aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--mail2.c7
-rw-r--r--parser.c9
-rw-r--r--processor.c7
3 files changed, 16 insertions, 7 deletions
diff --git a/mail2.c b/mail2.c
index 02cdbd8..353506f 100644
--- a/mail2.c
+++ b/mail2.c
@@ -1,4 +1,4 @@
-/* $Id: mail2.c,v 1.6 2001/09/12 06:17:22 reinelt Exp $
+/* $Id: mail2.c,v 1.7 2002/12/05 19:23:01 reinelt Exp $
*
* mail: pop3, imap, news functions
*
@@ -20,6 +20,9 @@
*
*
* $Log: mail2.c,v $
+ * Revision 1.7 2002/12/05 19:23:01 reinelt
+ * fixed undefined operations found by gcc3
+ *
* Revision 1.6 2001/09/12 06:17:22 reinelt
* *** empty log message ***
*
@@ -266,7 +269,7 @@ static int check_nntp(char *user, char *pass, char *machine,
while (1) {
lmin = strtol(p, &p, 10);
if (*p == '-')
- lmax = strtol(++p, &p, 10);
+ lmax = strtol(p+1, &p, 10);
else
lmax=lmin;
debug("nntp: %s: lmin=%d lmax=%d", group, lmin, lmax);
diff --git a/parser.c b/parser.c
index 64544e7..cc12e6f 100644
--- a/parser.c
+++ b/parser.c
@@ -1,4 +1,4 @@
-/* $Id: parser.c,v 1.17 2002/08/19 04:41:20 reinelt Exp $
+/* $Id: parser.c,v 1.18 2002/12/05 19:23:01 reinelt Exp $
*
* row definition parser
*
@@ -20,6 +20,9 @@
*
*
* $Log: parser.c,v $
+ * Revision 1.18 2002/12/05 19:23:01 reinelt
+ * fixed undefined operations found by gcc3
+ *
* Revision 1.17 2002/08/19 04:41:20 reinelt
* introduced bar.c, moved bar stuff from display.h to bar.h
*
@@ -257,7 +260,7 @@ char *parse_row (char *string, int supported_bars, int usage[])
break;
}
if (isupper(*s)) type |= BAR_LOG;
- len=strtol(++s, &s, 10);
+ len=strtol(s+1, &s, 10);
if (len<1 || len>127) {
error ("WARNING: invalid bar length in <%s>", string);
break;
@@ -282,7 +285,7 @@ char *parse_row (char *string, int supported_bars, int usage[])
}
}
else if (*s == ',' && (type & BAR_T))
- token2=strtol(++s, &s, 10); /* get horizontal length */
+ token2=strtol(s+1, &s, 10); /* get horizontal length */
*p++='$';
*p++=type;
*p++=len;
diff --git a/processor.c b/processor.c
index b53eb56..4e4a0e5 100644
--- a/processor.c
+++ b/processor.c
@@ -1,4 +1,4 @@
-/* $Id: processor.c,v 1.27 2002/08/19 04:41:20 reinelt Exp $
+/* $Id: processor.c,v 1.28 2002/12/05 19:23:01 reinelt Exp $
*
* main data processing
*
@@ -20,6 +20,9 @@
*
*
* $Log: processor.c,v $
+ * Revision 1.28 2002/12/05 19:23:01 reinelt
+ * fixed undefined operations found by gcc3
+ *
* Revision 1.27 2002/08/19 04:41:20 reinelt
* introduced bar.c, moved bar stuff from display.h to bar.h
*
@@ -342,7 +345,7 @@ static double query_bar (int token)
case T_BATT_PERC:
{
static int alarm;
- alarm=(++alarm % 3);
+ alarm=((alarm+1) % 3);
if(value < atoi(cfg_get("battwarning")?:"10") && !alarm) /* flash bar */
value = 0;
return value/100;