diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-13 23:55:56 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-08-13 23:55:56 +0800 |
commit | 307e206fec114bdc48f8f693795db06117430e6d (patch) | |
tree | 9102a7f8c45b7ef0c0f8a7788ffc769cda357234 /calendar/main.c | |
parent | 6466c2f6d51414464a0aa32e31a151ce6b148d33 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'calendar/main.c')
-rw-r--r-- | calendar/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)){ |