diff options
author | John (J5) Palmieri <johnp@redhat.com> | 2005-09-26 22:26:38 +0000 |
---|---|---|
committer | John (J5) Palmieri <johnp@redhat.com> | 2005-09-26 22:26:38 +0000 |
commit | 68d1880e5650e5ae5fa41457a7628c2e02838a3f (patch) | |
tree | 9a6edc3c42e05833d8a6885e310d5d92442b7f7f /glib | |
parent | c1974650eeb701b8303e0db6c3185266998e404c (diff) | |
download | dbus-68d1880e5650e5ae5fa41457a7628c2e02838a3f.tar.gz |
* glib/dbus-glib-tool.c: removed extra comma at the end of the
DBusBindingOutputMode enum which was causing a warning.
#include <time.h> so using time_t is explicitly defined
Diffstat (limited to 'glib')
-rw-r--r-- | glib/dbus-glib-tool.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/glib/dbus-glib-tool.c b/glib/dbus-glib-tool.c index 53ae42b2..228fbf81 100644 --- a/glib/dbus-glib-tool.c +++ b/glib/dbus-glib-tool.c @@ -36,6 +36,7 @@ #include <errno.h> #include <sys/stat.h> #include <string.h> +#include <time.h> #ifdef DBUS_BUILD_TESTS static void run_all_tests (const char *test_data_dir); @@ -45,7 +46,7 @@ typedef enum { DBUS_BINDING_OUTPUT_NONE, DBUS_BINDING_OUTPUT_PRETTY, DBUS_BINDING_OUTPUT_GLIB_SERVER, - DBUS_BINDING_OUTPUT_GLIB_CLIENT, + DBUS_BINDING_OUTPUT_GLIB_CLIENT } DBusBindingOutputMode; static void |