diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-11-17 22:03:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-11-17 23:42:30 +0100 |
commit | 4f02b98d0ed4a314916c69a225d7a45dda3f5f8c (patch) | |
tree | 8c1c3ad43ff6773767a38b13299330d4cb9d9b96 /lib/printf-args.c | |
parent | 8bcecbd302912f802026b00fbd15abc93c81860c (diff) | |
download | guile-4f02b98d0ed4a314916c69a225d7a45dda3f5f8c.tar.gz |
Use Gnulib's `version-etc-fsf' for `--version' and `--help' output.
* m4/gnulib-cache.m4: Add `version-etc-fsf'. Switch to LGPLv3+.
* GUILE-VERSION (PACKAGE): Change to "GNU Guile".
* Makefile.am (distdir): New variable.
* libguile/script.c (scm_shell_usage): Improve formatting. Use
`emit_bug_reporting_address ()'.
(scm_compile_shell_switches): Use `version_etc ()'.
Diffstat (limited to 'lib/printf-args.c')
-rw-r--r-- | lib/printf-args.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/printf-args.c b/lib/printf-args.c index c31d2042e..75af607a6 100644 --- a/lib/printf-args.c +++ b/lib/printf-args.c @@ -1,5 +1,6 @@ /* Decomposed printf argument list. - Copyright (C) 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc. + Copyright (C) 1999, 2002-2003, 2005-2007, 2009 Free Software + Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -89,7 +90,7 @@ PRINTF_FETCHARGS (va_list args, arguments *a) where wint_t is 'unsigned short'. */ ap->a.a_wide_char = (sizeof (wint_t) < sizeof (int) - ? va_arg (args, int) + ? (wint_t) va_arg (args, int) : va_arg (args, wint_t)); break; #endif |