Skip to content

Commit 16ae5ed

Browse files
committed
add const to the ident
1 parent e37a981 commit 16ae5ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/strsep.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <string.h>
33

44
static void
5-
print_hex(char *ident, char *str, char *end)
5+
print_hex(const char *ident, char *str, char *end)
66
{
77
printf("%-10s", ident);
88
for (char *p = str; p < end; p++)

0 commit comments

Comments
 (0)