1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

formatting fix

* libguile/filesys.c (scm_canonicalize_path): Format fix.
This commit is contained in:
Andy Wingo 2010-04-19 13:12:26 +02:00
parent 4597cd2027
commit 427c73b9ca

View file

@ -1638,7 +1638,8 @@ SCM_DEFINE (scm_canonicalize_path, "canonicalize-path", 1, 0, 0,
"separators (@code{/}) nor symlinks.\n\n" "separators (@code{/}) nor symlinks.\n\n"
"Raises an error if any component of @var{path} does not exist.") "Raises an error if any component of @var{path} does not exist.")
#define FUNC_NAME s_scm_canonicalize_path #define FUNC_NAME s_scm_canonicalize_path
{ char *str, *canon; {
char *str, *canon;
SCM_VALIDATE_STRING (1, path); SCM_VALIDATE_STRING (1, path);