Fix casting int to int
authorChristopher Michael <cpmichael1@comcast.net>
Sat, 31 Dec 2005 12:01:04 +0000 (12:01 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Sat, 31 Dec 2005 12:01:04 +0000 (12:01 +0000)
SVN revision: 19453

src/bin/e_remote_main.c

index 341585e..88d8a2b 100644 (file)
@@ -89,7 +89,7 @@ main(int argc, char **argv)
               "Perhaps you are out of memory?\n");
        exit(-1);
      }
-   ecore_app_args_set((int)argc, (const char **)argv);
+   ecore_app_args_set(argc, (const char **)argv);
    /* setup a handler for when e is asked to exit via a system signal */
    if (!ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT, _e_cb_signal_exit, NULL))
      {