Fix minor indentation bugs in strings.bif

This commit is contained in:
Christian Kreibich 2022-02-28 11:10:08 -08:00
parent 9b184c3d4a
commit 4194fdd279

View file

@ -541,7 +541,7 @@ function to_lower%(str: string%): string
*ls++ = s[i];
}
*ls++ = '\0';
*ls++ = '\0';
return zeek::make_intrusive<zeek::StringVal>(new zeek::String(1, lower_s, n));
%}
@ -570,7 +570,7 @@ function to_upper%(str: string%): string
*us++ = s[i];
}
*us++ = '\0';
*us++ = '\0';
return zeek::make_intrusive<zeek::StringVal>(new zeek::String(1, upper_s, n));
%}