periodic style check: whitespace cleanup

leading tabs and trailing blanks
This commit is contained in:
nhmall
2026-06-10 15:52:13 -04:00
parent 49ac961884
commit 958415607b
7 changed files with 19 additions and 18 deletions
+2 -1
View File
@@ -632,7 +632,8 @@ complex_dump(uchar *a)
for (i = 0; i < SIZE(x); ++i) { for (i = 0; i < SIZE(x); ++i) {
x[i] = *uc++; x[i] = *uc++;
} }
Snprintf(buf, sizeof buf, "%03x %03x %03x %03x %03x %03x %03x %03x %03x %03x", Snprintf(buf, sizeof buf,
"%03x %03x %03x %03x %03x %03x %03x %03x %03x %03x",
x[0], x[1], x[2], x[3], x[4], x[5], x[6], x[7], x[8], x[9]); x[0], x[1], x[2], x[3], x[4], x[5], x[6], x[7], x[8], x[9]);
buf[40] = '\0'; buf[40] = '\0';
return buf; return buf;