mirror of
https://github.com/samba-team/samba.git
synced 2025-02-26 21:57:41 +03:00
s3:passdb/pdb_samba4.c - fix a format specifier warning
Reviewed-by: Tridge
This commit is contained in:
parent
7ebafb000a
commit
4d0c00bb33
@ -325,7 +325,7 @@ static bool pdb_samba4_add_time(struct ldb_message *msg,
|
||||
|
||||
unix_to_nt_time(&nt_time, t);
|
||||
|
||||
return ldb_msg_add_fmt(msg, attrib, "%llu", nt_time);
|
||||
return ldb_msg_add_fmt(msg, attrib, "%llu", (unsigned long long) nt_time);
|
||||
}
|
||||
|
||||
/* Like in pdb_ldap(), this will need to be a function pointer when we
|
||||
|
Loading…
x
Reference in New Issue
Block a user