summaryrefslogtreecommitdiffstats
path: root/src/polypcore
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-05-23 07:33:33 +0000
committerPierre Ossman <ossman@cendio.se>2006-05-23 07:33:33 +0000
commit1b72d026344866f59ee2caaa66250d5932faea78 (patch)
tree44f7e0f2cecf605bbd1fcf11b29dd0b02b3a135a /src/polypcore
parentd71dc9b022209480c2ddecdc8b1356ee02c69a55 (diff)
Fix some warnings.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@948 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polypcore')
-rw-r--r--src/polypcore/core-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/polypcore/core-util.c b/src/polypcore/core-util.c
index 0e7f77a4..bb6a3d85 100644
--- a/src/polypcore/core-util.c
+++ b/src/polypcore/core-util.c
@@ -564,7 +564,7 @@ static int is_group(gid_t gid, const char *name) {
data = pa_xmalloc(n);
if (getgrgid_r(gid, &group, data, n, &result) < 0 || !result) {
- pa_log(__FILE__": getgrgid_r(%u): %s", gid, pa_cstrerror(errno));
+ pa_log(__FILE__": getgrgid_r(%u): %s", (unsigned)gid, pa_cstrerror(errno));
goto finish;
}