diff options
Diffstat (limited to 'sim')
-rw-r--r-- | sim/testsuite/cris/c/stat3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/testsuite/cris/c/stat3.c b/sim/testsuite/cris/c/stat3.c index f7c9604..321da1b 100644 --- a/sim/testsuite/cris/c/stat3.c +++ b/sim/testsuite/cris/c/stat3.c @@ -14,7 +14,7 @@ int main (int argc, char *argv[]) char path[1024] = "/"; struct stat buf; - strcat (path, mybasename(argv[0])); + strcat (path, mybasename (argv[0])); if (stat (".", &buf) != 0 || !S_ISDIR (buf.st_mode)) abort (); |