aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-04-26 17:01:52 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-05-05 15:47:16 +0200
commitb440e7581fa2c22d34b4bd2e838598653255d881 (patch)
tree8b3aca30768457f07c616ece0ef8a0e421c368ee /src
parenta809dc42fd22fc0736838f877b8d026608b315ec (diff)
downloadayatana-indicator-datetime-b440e7581fa2c22d34b4bd2e838598653255d881.tar.gz
ayatana-indicator-datetime-b440e7581fa2c22d34b4bd2e838598653255d881.tar.bz2
ayatana-indicator-datetime-b440e7581fa2c22d34b4bd2e838598653255d881.zip
src/clock-live.cpp: Replace 'signed size_t' by 'ssize_t'.
Diffstat (limited to 'src')
-rw-r--r--src/clock-live.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clock-live.cpp b/src/clock-live.cpp
index 74cf344..b6d7c12 100644
--- a/src/clock-live.cpp
+++ b/src/clock-live.cpp
@@ -143,7 +143,7 @@ private:
auto now_str = g_date_time_format(now, "%F %T");
g_debug("%s triggered at %s.%06d by GIOCondition %d, read %zd bytes, found %zu interrupts",
G_STRFUNC, now_str, g_date_time_get_microsecond(now),
- (int)cond, (signed size_t)n_bytes, (size_t)n_interrupts);
+ (int)cond, (ssize_t)n_bytes, (size_t)n_interrupts);
g_free(now_str);
g_date_time_unref(now);