aboutsummaryrefslogtreecommitdiff
path: root/stdio/bug3.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio/bug3.c')
-rw-r--r--stdio/bug3.c2
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);