From 427c73b9ca0f4f29194ba0933b2d03d51275f7c6 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 19 Apr 2010 13:12:26 +0200 Subject: [PATCH] formatting fix * libguile/filesys.c (scm_canonicalize_path): Format fix. --- libguile/filesys.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libguile/filesys.c b/libguile/filesys.c index 5ca1233f2..0dbcc2b12 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -1638,7 +1638,8 @@ SCM_DEFINE (scm_canonicalize_path, "canonicalize-path", 1, 0, 0, "separators (@code{/}) nor symlinks.\n\n" "Raises an error if any component of @var{path} does not exist.") #define FUNC_NAME s_scm_canonicalize_path -{ char *str, *canon; +{ + char *str, *canon; SCM_VALIDATE_STRING (1, path);