aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-08-13 23:55:56 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-08-13 23:55:56 +0800
commit307e206fec114bdc48f8f693795db06117430e6d (patch)
tree9102a7f8c45b7ef0c0f8a7788ffc769cda357234
parent6466c2f6d51414464a0aa32e31a151ce6b148d33 (diff)
downloadgsoc2013-evolution-307e206fec114bdc48f8f693795db06117430e6d.tar
gsoc2013-evolution-307e206fec114bdc48f8f693795db06117430e6d.tar.gz
gsoc2013-evolution-307e206fec114bdc48f8f693795db06117430e6d.tar.bz2
gsoc2013-evolution-307e206fec114bdc48f8f693795db06117430e6d.tar.lz
gsoc2013-evolution-307e206fec114bdc48f8f693795db06117430e6d.tar.xz
gsoc2013-evolution-307e206fec114bdc48f8f693795db06117430e6d.tar.zst
gsoc2013-evolution-307e206fec114bdc48f8f693795db06117430e6d.zip
Little compiler warning fix - Federico
svn path=/trunk/; revision=313
-rw-r--r--calendar/gui/main.c2
-rw-r--r--calendar/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c
index 80ee344fcb..6d2a334163 100644
--- a/calendar/gui/main.c
+++ b/calendar/gui/main.c
@@ -401,7 +401,7 @@ new_calendar (char *full_name, char *calendar_file, char *geometry, char *page)
/* i18n: This "%s%s" indicates possession. Languages where the order is
the inverse should translate it to "%2$s%1$s". */
- g_snprintf(title, 128, _("%s%s"), full_name, _("'s calendar"), NULL);
+ g_snprintf(title, 128, _("%s%s"), full_name, _("'s calendar"));
toplevel = gnome_calendar_new (title);
if (gnome_parse_geometry (geometry, &xpos, &ypos, &width, &height)){
diff --git a/calendar/main.c b/calendar/main.c
index 80ee344fcb..6d2a334163 100644
--- a/calendar/main.c
+++ b/calendar/main.c
@@ -401,7 +401,7 @@ new_calendar (char *full_name, char *calendar_file, char *geometry, char *page)
/* i18n: This "%s%s" indicates possession. Languages where the order is
the inverse should translate it to "%2$s%1$s". */
- g_snprintf(title, 128, _("%s%s"), full_name, _("'s calendar"), NULL);
+ g_snprintf(title, 128, _("%s%s"), full_name, _("'s calendar"));
toplevel = gnome_calendar_new (title);
if (gnome_parse_geometry (geometry, &xpos, &ypos, &width, &height)){