summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cdb0c93)
raw | patch | inline | side by side (parent: cdb0c93)
author | octo <octo> | |
Sun, 19 Feb 2006 09:46:07 +0000 (09:46 +0000) | ||
committer | octo <octo> | |
Sun, 19 Feb 2006 09:46:07 +0000 (09:46 +0000) |
src/battery.c | patch | blob | history |
diff --git a/src/battery.c b/src/battery.c
index 6c7e2b50d6d17b4e6e77be41d71fc04ff24d911b..d467ecc8614148181cd945941f45d616915a6f26 100644 (file)
--- a/src/battery.c
+++ b/src/battery.c
if (numfields < 3)
continue;
- if ((strcmp (fields[0], "present"))
- && (strcmp (fields[1], "rate:")))
+ if ((strcmp (fields[0], "present") == 0)
+ && (strcmp (fields[1], "rate:") == 0))
valptr = ¤t;
- else if ((strcmp (fields[0], "remaining"))
- && (strcmp (fields[1], "capacity:")))
+ else if ((strcmp (fields[0], "remaining") == 0)
+ && (strcmp (fields[1], "capacity:") == 0))
valptr = &charge;
- else if ((strcmp (fields[0], "present"))
- && (strcmp (fields[1], "voltage:")))
+ else if ((strcmp (fields[0], "present") == 0)
+ && (strcmp (fields[1], "voltage:") == 0))
valptr = &voltage;
else
valptr = NULL;
- if ((strcmp (fields[0], "charging"))
- && (strcmp (fields[1], "state:")))
+ if ((strcmp (fields[0], "charging") == 0)
+ && (strcmp (fields[1], "state:") == 0))
{
- if (strcmp (fields[2], "charging"))
+ if (strcmp (fields[2], "charging") == 0)
charging = 1;
else
charging = 0;