From e6bbfe7b4bb1607de31d25d418106c2c4ba0f8ec Mon Sep 17 00:00:00 2001 From: 0y8w1x Date: Thu, 10 Aug 2023 00:36:13 +0200 Subject: [PATCH] u/truncate_printf: Fix spelling [NFC] --- src/xrt/auxiliary/util/u_truncate_printf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrt/auxiliary/util/u_truncate_printf.h b/src/xrt/auxiliary/util/u_truncate_printf.h index 5a7fe98dd..d14bcf79a 100644 --- a/src/xrt/auxiliary/util/u_truncate_printf.h +++ b/src/xrt/auxiliary/util/u_truncate_printf.h @@ -35,7 +35,7 @@ u_truncate_vsnprintf(char *chars, size_t char_count, const char *fmt, va_list ar { /* * We always want to be able to write null terminator, and - * something propbly went wrong if char_count larger then INT_MAX. + * something probably went wrong if char_count larger then INT_MAX. */ if (char_count == 0 || char_count > INT_MAX) { return -1; @@ -68,7 +68,7 @@ u_truncate_snprintf(char *chars, size_t char_count, const char *fmt, ...) { /* * We always want to be able to write null terminator, and - * something propbly went wrong if char_count larger then INT_MAX. + * something probably went wrong if char_count larger then INT_MAX. */ if (char_count == 0 || char_count > INT_MAX) { return -1;