Remove unused variable.
authorcarl <cecodere@yahoo.ca>
Wed, 20 Feb 2019 16:43:49 +0000 (00:43 +0800)
committercarl <cecodere@yahoo.ca>
Wed, 20 Feb 2019 16:43:49 +0000 (00:43 +0800)
modules/src/em_code/em.c

index 61d4c70..407f0d0 100644 (file)
@@ -53,7 +53,6 @@ char          *C_opp = obuf;
 
 void C_flush(void)
 {
-       int count;
 #ifdef INCORE
        static unsigned int bufsiz;
 
@@ -72,7 +71,6 @@ void C_flush(void)
                return;
        }
 #endif
-       count = (int)(C_opp - obuf);
        if (C_opp != obuf && sys_write(C_ofp, obuf, (int)(C_opp - obuf)) == 0) {
                C_ofp = 0;
                C_failed();