The branch, master has been updated
via 0e1814c s3-utils: Add cast to fix error found by -Werror=format
from 3aa6f08 build: Add more -Werror flags now the tree is clean of
these errors
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 0e1814c6f68ab36ea0a525a1c71e6e2db91bd0e6
Author: Andrew Bartlett <[email protected]>
Date: Mon Jul 30 17:54:39 2012 +1000
s3-utils: Add cast to fix error found by -Werror=format
Autobuild-User(master): Andrew Bartlett <[email protected]>
Autobuild-Date(master): Mon Jul 30 11:51:02 CEST 2012 on sn-devel-104
-----------------------------------------------------------------------
Summary of changes:
source3/utils/cclean.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/utils/cclean.c b/source3/utils/cclean.c
index 487c107..2084117 100644
--- a/source3/utils/cclean.c
+++ b/source3/utils/cclean.c
@@ -44,8 +44,8 @@ struct cclean_ctx {
static char *serverid_str(const struct server_id id)
{
- return talloc_asprintf(talloc_tos(), "pid %u, vnn %u, uid %lu",
- (unsigned)id.pid, (unsigned)id.vnn,
id.unique_id);
+ return talloc_asprintf(talloc_tos(), "pid %u, vnn %u, uid %llu",
+ (unsigned)id.pid, (unsigned)id.vnn, (unsigned
long long)id.unique_id);
}
static void print_record(const char *msg,
--
Samba Shared Repository