]> granicus.if.org Git - procps-ng/commitdiff
compile fix
authoralbert <>
Sun, 8 Dec 2002 20:33:07 +0000 (20:33 +0000)
committeralbert <>
Sun, 8 Dec 2002 20:33:07 +0000 (20:33 +0000)
top.c

diff --git a/top.c b/top.c
index 2dad1991a8fb728ff9a689b967e8754d80c8d8eb..5d917e931cd6515a4602768fe93ec992a69ee339 100644 (file)
--- a/top.c
+++ b/top.c
@@ -1106,6 +1106,7 @@ static FLD_t Fieldstab[] = {
 #define FT_OLD_fmt 2
 
 
+#if 0
         // convert, or 0 for failure
 static int ft_cvt_char (const int fr, const int to, int c) {
    int j = -1;
@@ -1116,6 +1117,7 @@ static int ft_cvt_char (const int fr, const int to, int c) {
    }
    return 0;
 }
+#endif
 
 
         // convert
@@ -1263,8 +1265,8 @@ static int rc_read_old (const char *const buf, RCF_t *rc) {
    u = 0;
    for (;;) {
       const char *tmp;
-      if (u+1 >= sizeof rc->win[0].fieldscur) return -1;
       int c = *cp++;
+      if (u+1 >= sizeof rc->win[0].fieldscur) return -1;
       if (c == '\0') return -2;
       if (c == '\n') break;
       if (c & ~0x7f) return -3;