diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-11-17 23:07:10 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-11-17 23:42:36 +0100 |
commit | c291b588356f751ec553d3de77996fa75b3a7515 (patch) | |
tree | cbd91b88170b7c6c1ef1e9aeb1ea37cc599c66e1 /libguile/stime.c | |
parent | c84bdaf6b44ce10fd5c549b8425cb57fb299c599 (diff) |
Fix stylistic issues revealed by "make syntax-check".
* libguile/gc-malloc.c (scm_must_free): Remove unnecessary `if' before
`free ()'.
* libguile/stime.c (scm_localtime, scm_mktime): Likewise.
* libguile/eval.i.c (ceval): Don't cast the result of alloca(3).
* libguile/i18n.c (SCM_STRING_TO_U32_BUF): Likewise.
* test-suite/standalone/test-unwind.c: Likewise.
* libguile/strings.c (scm_i_deprecated_string_chars): Don't end error
message in period.
Diffstat (limited to 'libguile/stime.c')
-rw-r--r-- | libguile/stime.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libguile/stime.c b/libguile/stime.c index 54022c296..07dedf3b3 100644 --- a/libguile/stime.c +++ b/libguile/stime.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -423,8 +423,8 @@ SCM_DEFINE (scm_localtime, "localtime", 1, 1, 0, result = filltime (<, zoff, zname); SCM_CRITICAL_SECTION_END; - if (zname) - free (zname); + + free (zname); return result; } #undef FUNC_NAME @@ -581,8 +581,7 @@ SCM_DEFINE (scm_mktime, "mktime", 1, 1, 0, result = scm_cons (scm_from_long (itime), filltime (<, zoff, zname)); - if (zname) - free (zname); + free (zname); scm_dynwind_end (); return result; |