Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--properties/ev-properties-view.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4a3df34..033607e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-03-05 Tobias Mueller <tobiasmue@svn.gnome.org>
+
+ * properties/ev-properties-view.c:
+ (ev_properties_view_format_date): Make the fixed sized string a
+ semantically correct const char[] instead of a const char* to fix
+ a compiler warning if built with -Wformat.
+ ** Fixes bug 574168
+
2009-03-03 Christian Persch <chpe@gnome.org>
* libdocument/ev-document-factory.c:
diff --git a/properties/ev-properties-view.c b/properties/ev-properties-view.c
index 6d497ff..e0f1779 100644
--- a/properties/ev-properties-view.c
+++ b/properties/ev-properties-view.c
@@ -112,7 +112,7 @@ ev_properties_view_format_date (GTime utime)
{
time_t time = (time_t) utime;
char s[256];
- const char *fmt_hack = "%c";
+ const char fmt_hack[] = "%c";
size_t len;
#ifdef HAVE_LOCALTIME_R
struct tm t;