Browse Source

fix fdopen test

Mike Frysinger 19 years ago
parent
commit
d42f59881f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/misc/fdopen.c

+ 1 - 1
test/misc/fdopen.c

@@ -35,7 +35,7 @@ main (int argc, char *argv[])
 
   fp = fdopen (fd, "a");
   assert (fp != NULL);
-  assert (ftell (fp) == 14);
+  assert (ftell (fp) == 5);
 
 the_end:
   if (fp != NULL)