diff options
Diffstat (limited to 'src/util/u_debug.c')
-rw-r--r-- | src/util/u_debug.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/u_debug.c b/src/util/u_debug.c index ab3c8eb316d..465d669b69e 100644 --- a/src/util/u_debug.c +++ b/src/util/u_debug.c @@ -371,10 +371,10 @@ debug_dump_flags(const struct debug_named_value *names, unsigned long value) while (names->name) { if ((names->value & value) == names->value) { if (!first) - util_strncat(output, "|", sizeof(output) - strlen(output) - 1); + strncat(output, "|", sizeof(output) - strlen(output) - 1); else first = 0; - util_strncat(output, names->name, sizeof(output) - strlen(output) - 1); + strncat(output, names->name, sizeof(output) - strlen(output) - 1); output[sizeof(output) - 1] = '\0'; value &= ~names->value; } @@ -383,12 +383,12 @@ debug_dump_flags(const struct debug_named_value *names, unsigned long value) if (value) { if (!first) - util_strncat(output, "|", sizeof(output) - strlen(output) - 1); + strncat(output, "|", sizeof(output) - strlen(output) - 1); else first = 0; util_snprintf(rest, sizeof(rest), "0x%08lx", value); - util_strncat(output, rest, sizeof(output) - strlen(output) - 1); + strncat(output, rest, sizeof(output) - strlen(output) - 1); output[sizeof(output) - 1] = '\0'; } |