blob: 626794173b20aede7ab946d6dab1fe82190edf98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/apachetop.cc.orig 2005-10-15 16:23:31 UTC
+++ src/apachetop.cc
@@ -271,7 +271,7 @@ int main(int argc, char *argv[])
hm->create(cf.circle_size);
/* }}} */
- memset(&gstats, (char) NULL, sizeof(gstats));
+ memset(&gstats, 0, sizeof(gstats));
gstats.start = time(NULL);
signal(SIGINT, &catchsig);
@@ -465,7 +465,7 @@ int main(int argc, char *argv[])
continue;
}
- *nextline = (char) NULL;
+ *nextline = '\0';
++nextline;
/* which parser? */
|