Fixed restoration of the panel divider position.
[psensor.git] / src / lib / url.c
index b06cd4c..c586a2a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2011 jeanfi@gmail.com
+ * Copyright (C) 2010-2014 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
@@ -40,7 +40,7 @@ char *url_normalize(const char *url)
 
 static char to_hex(char code)
 {
-       static char hex[] = "0123456789abcdef";
+       static const char hex[] = "0123456789abcdef";
        return hex[code & 0x0f];
 }