]> git.llucax.com Git - software/eventxx.git/blobdiff - test/test-eof.cpp
Avoid a weird gcc warning when compiling with optimizations.
[software/eventxx.git] / test / test-eof.cpp
index 9f6220f18094662638b8eb62753325113b474a2e..c1c05db59219f0cf8bf73258ed5f34e51b5da102 100644 (file)
@@ -50,7 +50,7 @@ read_cb(int fd, short event, void *arg)
 int
 main (int argc, char **argv)
 {
 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)
        int pair[2];
 
        if (socketpair(AF_UNIX, SOCK_STREAM, 0, pair) == -1)
@@ -60,7 +60,7 @@ main (int argc, char **argv)
        shutdown(pair[0], SHUT_WR);
 
        /* Initalize one event */
        shutdown(pair[0], SHUT_WR);
 
        /* Initalize one event */
-       ev = new eventxx::cevent(pair[1], EV_READ, read_cb, NULL);
+       ev = new eventxx::cevent(pair[1], eventxx::READ, read_cb, NULL);
 
        d.add(*ev);
 
 
        d.add(*ev);