From 45256b007c9ce8cd35c9398d523ccbd0461a5cc7 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 18 Jul 2019 23:52:03 -0500 Subject: [PATCH] Bugfix: string lengths now use signed integers --- level_0/f_strings/c/strings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_0/f_strings/c/strings.h b/level_0/f_strings/c/strings.h index 224bab8..6f9201a 100644 --- a/level_0/f_strings/c/strings.h +++ b/level_0/f_strings/c/strings.h @@ -86,7 +86,7 @@ extern "C"{ #endif // _di_f_have_string_ #ifndef _di_f_string_length_ - typedef f_u_long f_string_length; + typedef f_s_long f_string_length; #define f_string_length_printf string_format_long_integer -- 1.8.3.1