]> granicus.if.org Git - yasm/commitdiff
Finish cleanups made in [1967].
authorPeter Johnson <peter@tortall.net>
Thu, 20 Sep 2007 04:23:48 +0000 (04:23 -0000)
committerPeter Johnson <peter@tortall.net>
Thu, 20 Sep 2007 04:23:48 +0000 (04:23 -0000)
svn path=/trunk/yasm/; revision=1969

frontends/yasm/yasm.c

index 8800d321c6e4d71b86098dd7ba31f8d59bc90e47..31281874a43b1f84802cc9c9cae200bdeabef729 100644 (file)
@@ -505,7 +505,6 @@ do_assemble(void)
 int
 main(int argc, char *argv[])
 {
-    /*@null@*/ FILE *in = NULL;
     size_t i;
 
     errfile = stderr;
@@ -630,7 +629,7 @@ main(int argc, char *argv[])
 
     /* handle preproc-only case here */
     if (preproc_only)
-        return do_preproc_only(in);
+        return do_preproc_only();
 
     /* If list file enabled, make sure we have a list format loaded. */
     if (list_filename) {
@@ -655,7 +654,7 @@ main(int argc, char *argv[])
         }
     }
 
-    return do_assemble(in);
+    return do_assemble();
 }
 /*@=globstate =unrecog@*/