From 4885e904906dcc967e3597301c17ad95bb77b5e0 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 15 Dec 2003 21:35:52 +0000 Subject: Make compile warning-free on cygwin svn:r936 --- src/common/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/util.c') diff --git a/src/common/util.c b/src/common/util.c index 623ec05ba..1de6b99d6 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -532,7 +532,7 @@ int check_private_dir(const char *dirname, int create) return -1; } if (st.st_uid != getuid()) { - log(LOG_WARN, "%s is not owned by this UID (%d)", dirname, getuid()); + log(LOG_WARN, "%s is not owned by this UID (%d)", dirname, (int)getuid()); return -1; } if (st.st_mode & 0077) { -- cgit v1.2.3