diff options
Diffstat (limited to 'script.c')
-rw-r--r-- | script.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -224,7 +224,7 @@ char *find_impl_file(exec_path, generic_name, initname, sep) /* Look for initname in peer directories "lib" and "src" in subdirectory with the name of the executable (sans any type extension like .EXE). */ - for(peer="lib";!0;peer="src") { + for (peer="lib";!0;peer="src") { path = scm_cat_path(0L, exec_path, extptr - exec_path + 0L); if (path) { strncpy(path + sepind - 4, peer, 3); @@ -239,7 +239,7 @@ char *find_impl_file(exec_path, generic_name, initname, sep) /* Look for initname in peer directories "lib" and "src" in subdirectory with the generic name. */ - for(peer="lib";!0;peer="src") { + for (peer="lib";!0;peer="src") { path = scm_cat_path(0L, exec_path, sepind); if (path) { strncpy(path + sepind - 4, peer, 3); |