diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2022-02-16 07:32:00 +0100 |
---|---|---|
committer | Hans-Peter Nilsson <hp@bitrange.com> | 2022-02-16 07:38:38 +0100 |
commit | 7443cb7479621e54164c451eb5aad3a40f25dc97 (patch) | |
tree | da0146ead5640396a893c405632e7aaa827a1f33 /sim | |
parent | d0b2f561a1e8ef6ecf87a99f220262d58538c750 (diff) | |
download | gdb-7443cb7479621e54164c451eb5aad3a40f25dc97.zip gdb-7443cb7479621e54164c451eb5aad3a40f25dc97.tar.gz gdb-7443cb7479621e54164c451eb5aad3a40f25dc97.tar.bz2 |
sim/testsuite/cris/c/stat3.c: Fix formatting nit
* c/stat3.c (main): Fix formatting nit.
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 (); |