sh: remove a FIXME
authorAlan Cox <alan@linux.intel.com>
Mon, 11 May 2015 21:31:21 +0000 (22:31 +0100)
committerAlan Cox <alan@linux.intel.com>
Mon, 11 May 2015 21:31:21 +0000 (22:31 +0100)
Applications/V7/cmd/sh/stak.c

index 736157e..34104a3 100644 (file)
@@ -43,7 +43,6 @@ STKPTR locstak(void)
 
 STKPTR savstak(void)
 {
-        /* FIXME: check assert doesn't suck in stdio */
        assert(staktop == stakbot);
        return stakbot;
 }
@@ -65,7 +64,7 @@ void tdystak(register char *x)
                stakbsy = stakbsy->word;
        }
        staktop = stakbot = max(ADR(x), ADR(stakbas));
-       rmtemp((void *)x);      /* FIXME */
+       rmtemp((IOPTR)x);
 }
 
 void stakchk(void)