summaryrefslogtreecommitdiffstats
path: root/src/Daemon/CrashWatcher.cpp
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-02-05 14:25:28 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2009-02-05 14:25:28 +0100
commit7624f34a7ff9a49ef2da5cbfbe82ddc2adde22a9 (patch)
treec88375dc3ff08d65d5aa7c5189581b77a46316e2 /src/Daemon/CrashWatcher.cpp
parentce0c3b87c7fff7be6a1c7867996fe65ec6dd0bfa (diff)
downloadabrt-7624f34a7ff9a49ef2da5cbfbe82ddc2adde22a9.tar.gz
abrt-7624f34a7ff9a49ef2da5cbfbe82ddc2adde22a9.tar.xz
abrt-7624f34a7ff9a49ef2da5cbfbe82ddc2adde22a9.zip
Fixed variable type guint->gsize
Diffstat (limited to 'src/Daemon/CrashWatcher.cpp')
-rw-r--r--src/Daemon/CrashWatcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Daemon/CrashWatcher.cpp b/src/Daemon/CrashWatcher.cpp
index 2155b2b..e6802a3 100644
--- a/src/Daemon/CrashWatcher.cpp
+++ b/src/Daemon/CrashWatcher.cpp
@@ -36,7 +36,7 @@ void terminate(int signal)
gboolean CCrashWatcher::handle_event_cb(GIOChannel *gio, GIOCondition condition, gpointer daemon){
GIOError err;
char buf[INOTIFY_BUFF_SIZE];
- guint len;
+ gsize len;
int i = 0;
err = g_io_channel_read (gio, buf, INOTIFY_BUFF_SIZE, &len);
if (err != G_IO_ERROR_NONE) {