Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-04-23 17:52:48 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-04-23 17:52:48 (GMT)
commit841b7c6737beddb202d8a19831baf109b797a4de (patch)
tree209e8d0017d8eb3f47e24656e39a4d034ef73cec /devbot
parent04e863e4b494f675db097584be79cd976dc326e6 (diff)
Fix warnings
Diffstat (limited to 'devbot')
-rw-r--r--devbot/sourcestamp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/sourcestamp.c b/devbot/sourcestamp.c
index ae6a8e8..c5dffd6 100644
--- a/devbot/sourcestamp.c
+++ b/devbot/sourcestamp.c
@@ -67,7 +67,7 @@ PyObject *sourcestamp_compute(PyObject *self, PyObject *args)
}
list_dir(path, &mtime, &n_files);
- snprintf(stamp, 100, "%d - %d", n_files, mtime);
+ snprintf(stamp, 100, "%d - %lu", n_files, (long unsigned)mtime);
return Py_BuildValue("s", stamp);
}