From b10821aae9ac208dce0613e6869984d4f2fa1674 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 4 Aug 2006 20:54:37 +0000 Subject: --sort-key flag in the command-line, overriding the saved setting in .htoprc for the session. (thanks to Rodolfo Borges) --- String.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'String.c') diff --git a/String.c b/String.c index e862bff5..e0b981c5 100644 --- a/String.c +++ b/String.c @@ -96,7 +96,7 @@ void String_printPointer(void* p) { printf("%p", p); } -inline int String_eq(char* s1, char* s2) { +inline int String_eq(const char* s1, const char* s2) { if (s1 == NULL || s2 == NULL) { if (s1 == NULL && s2 == NULL) return 1; -- cgit v1.2.3