tsdump: fix compiler warnings

This commit is contained in:
Todd C. Miller
2023-10-18 10:02:16 -06:00
parent 14d514e5ac
commit 385d506d35

View File

@@ -184,7 +184,7 @@ valid_entry(union timestamp_entry_storage *u, off_t pos)
debug_return_bool(true); debug_return_bool(true);
} }
static char * static const char *
type2string(int type) type2string(int type)
{ {
static char name[64]; static char name[64];
@@ -192,20 +192,20 @@ type2string(int type)
switch (type) { switch (type) {
case TS_LOCKEXCL: case TS_LOCKEXCL:
debug_return_str("TS_LOCKEXCL"); debug_return_const_str("TS_LOCKEXCL");
case TS_GLOBAL: case TS_GLOBAL:
debug_return_str("TS_GLOBAL"); debug_return_const_str("TS_GLOBAL");
case TS_TTY: case TS_TTY:
debug_return_str("TS_TTY"); debug_return_const_str("TS_TTY");
case TS_PPID: case TS_PPID:
debug_return_str("TS_PPID"); debug_return_const_str("TS_PPID");
} }
(void)snprintf(name, sizeof(name), "UNKNOWN (0x%x)", type); (void)snprintf(name, sizeof(name), "UNKNOWN (0x%x)", type);
debug_return_str(name); debug_return_const_str(name);
} }
static void static void
print_flags(int flags) print_flags(unsigned int flags)
{ {
bool first = true; bool first = true;
debug_decl(print_flags, SUDOERS_DEBUG_UTIL); debug_decl(print_flags, SUDOERS_DEBUG_UTIL);