From 1003f89dc03cd248f37ae2718eb8643c8fe0a451 Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Sat, 12 Oct 2013 16:18:04 +0200 Subject: [PATCH] WPrefs: Fixed duplicate 'const' keyword (as reported by LLVM / clang) --- WPrefs.app/WPrefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WPrefs.app/WPrefs.c b/WPrefs.app/WPrefs.c index 6d74409a..9683d374 100644 --- a/WPrefs.app/WPrefs.c +++ b/WPrefs.app/WPrefs.c @@ -915,7 +915,7 @@ void SetIntegerForKey(int value, const char *defaultName) WMReleasePropList(object); } -void SetStringForKey(const char *value, const const char *defaultName) +void SetStringForKey(const char *value, const char *defaultName) { WMPropList *object;