diff options
Diffstat (limited to 'plugins/groupwise-features/status-track.c')
-rw-r--r-- | plugins/groupwise-features/status-track.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/groupwise-features/status-track.c b/plugins/groupwise-features/status-track.c index 83ecf6c1bf..d350ef08ee 100644 --- a/plugins/groupwise-features/status-track.c +++ b/plugins/groupwise-features/status-track.c @@ -50,7 +50,7 @@ format_date (const gchar * value) time = e_gw_connection_get_date_from_string (value); str = ctime (&time); - str [strlen(str)-1] = '\0'; + str[strlen(str)-1] = '\0'; return str; } |