summaryrefslogtreecommitdiff
path: root/atari/osspec.c
diff options
context:
space:
mode:
Diffstat (limited to 'atari/osspec.c')
-rw-r--r--atari/osspec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atari/osspec.c b/atari/osspec.c
index 2f21bbefe..adf8375cb 100644
--- a/atari/osspec.c
+++ b/atari/osspec.c
@@ -117,14 +117,14 @@ char *gemdos_realpath(const char * path, char * rpath)
return(rpath);
}
- LOG(("realpath in: %s\n", path));
+ LOG("realpath in: %s\n", path);
r = realpath(path, work);
if (r != NULL) {
unx2dos((const char *)r, rpath);
- LOG(("realpath out: %s\n", rpath));
+ LOG("realpath out: %s\n", rpath);
return(rpath);
} else {
- LOG(("realpath out: NULL!\n"));
+ LOG("realpath out: NULL!\n");
}
return (NULL);
}