diff options
Diffstat (limited to 'stdio/bug3.c')
-rw-r--r-- | stdio/bug3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio/bug3.c b/stdio/bug3.c index 0f3c7f1087..1684720b9f 100644 --- a/stdio/bug3.c +++ b/stdio/bug3.c @@ -8,7 +8,7 @@ DEFUN_VOID(main) FILE *f; int i; - f = fopen("bugtest", "w+"); + f = fopen("/tmp/bugtest", "w+"); for (i=0; i<9000; i++) putc ('x', f); fseek (f, 8180L, 0); |