1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

Put an 0x in front of a hex number.

(This used to be commit a48d480ce9)
This commit is contained in:
Tim Potter
2001-06-26 06:26:05 +00:00
parent 742609a21d
commit 0c563186fb

View File

@ -523,7 +523,7 @@ BOOL get_safe_nt_error_msg(uint32 nt_code,char *msg, size_t len)
{ {
int idx = 0; int idx = 0;
slprintf(msg, len-1, "NT code %08x", nt_code); slprintf(msg, len-1, "NT code 0x%08x", nt_code);
while (nt_errs[idx].nt_errstr != NULL) while (nt_errs[idx].nt_errstr != NULL)
{ {