]> git.llucax.com Git - software/eventxx.git/blobdiff - test/test-weof.cpp
Avoid a weird gcc warning when compiling with optimizations.
[software/eventxx.git] / test / test-weof.cpp
index 8bcf6844520b7a3e55db73a59de555af11c7769b..589df4aeea184f9f2cefcfb559d2d8a90c35b1a9 100644 (file)
@@ -2,7 +2,7 @@
  * Compile with:
  * c++ -I/usr/local/include -o time-test time-test.cpp -L/usr/local/lib -levent
  *
  * Compile with:
  * c++ -I/usr/local/include -o time-test time-test.cpp -L/usr/local/lib -levent
  *
- * Wed 2006-12-27 - Modified by Leandro Lucarella <llucarella@integratech.com.ar>
+ * Wed 2006-12-27 - Modified by Leandro Lucarella <llucax+eventxx@gmail.com>
  *
  *     Adapted to test the C++ inteface.
  *
  *
  *     Adapted to test the C++ inteface.
  *
@@ -33,7 +33,7 @@ eventxx::event< cb_t >* ev;
 void
 write_cb(int fd, short event)
 {
 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);
        int len;
 
        len = write(fd, test, strlen(test) + 1);
@@ -61,7 +61,7 @@ main (int argc, char **argv)
                return (1);
 
        /* Initalize one event */
                return (1);
 
        /* Initalize one event */
-       ev = new eventxx::event< cb_t >(pair[1], EV_WRITE, write_cb);
+       ev = new eventxx::event< cb_t >(pair[1], eventxx::WRITE, write_cb);
 
        d.add(*ev);
 
 
        d.add(*ev);