diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-16 23:25:56 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-09-04 19:34:32 +0800 |
commit | fcbbdfbd18e15b4ee8322a0217cf03a689a5e033 (patch) | |
tree | e16cd2a2279558c6a2bfb6ca39fcbaac4c85ba59 /e-util/e-mktemp.c | |
parent | f78417c48861759d7b0c4535ecd3febe4638a7d3 (diff) | |
download | gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.gz gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.zst gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-mktemp.c')
-rw-r--r-- | e-util/e-mktemp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/e-util/e-mktemp.c b/e-util/e-mktemp.c index 2ce5a6717c..af9327f471 100644 --- a/e-util/e-mktemp.c +++ b/e-util/e-mktemp.c @@ -49,7 +49,8 @@ #define TEMP_SCAN (60) static gint -expire_dir_rec (const gchar *base, time_t now) +expire_dir_rec (const gchar *base, + time_t now) { GDir *dir; const gchar *d; @@ -157,7 +158,7 @@ get_dir (gboolean make) d(printf("temp dir '%s'\n", path ? path->str : "(null)")); /* fire off an expiry attempt no more often than TEMP_SCAN seconds */ - if (path && (last+TEMP_SCAN) < now) { + if (path && (last + TEMP_SCAN) < now) { last = now; expire_dir_rec (path->str, now); } |