]> git.llucax.com Git - software/eventxx.git/commitdiff
Fix an implicit cast from const char* (string literal) to char*.
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 21 Sep 2007 16:21:17 +0000 (13:21 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 21 Sep 2007 16:21:17 +0000 (13:21 -0300)
This avoids a compiler warning (and does the right thing(TM)).

test/test-eof.cpp
test/test-weof.cpp

index 4b30013783915b1cb8a51badc577afc4ea11dc35..c1c05db59219f0cf8bf73258ed5f34e51b5da102 100644 (file)
@@ -50,7 +50,7 @@ read_cb(int fd, short event, void *arg)
 int
 main (int argc, char **argv)
 {
-       char *test = "test string";
+       const char* test = "test string";
        int pair[2];
 
        if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
index ffe0a8885d62149c4d628dedfd161f8df5889e7d..589df4aeea184f9f2cefcfb559d2d8a90c35b1a9 100644 (file)
@@ -33,7 +33,7 @@ eventxx::event< cb_t >* ev;
 void
 write_cb(int fd, short event)
 {
-       char *test = "test string";
+       const char* test = "test string";
        int len;
 
        len = write(fd, test, strlen(test) + 1);