1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-31 20:22:15 +03:00

lib: Align integer types

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke
2020-01-19 11:50:57 +01:00
committed by Jeremy Allison
parent cffcc39f18
commit 37eb87d2be
2 changed files with 3 additions and 3 deletions

View File

@ -126,7 +126,7 @@ static const struct {
NTSTATUS map_nt_error_from_unix(int unix_error)
{
int i = 0;
size_t i = 0;
if (unix_error == 0) {
/* we map this to an error, not success, as this
@ -264,7 +264,7 @@ static const struct {
int map_errno_from_nt_status(NTSTATUS status)
{
int i;
size_t i;
DEBUG(10,("map_errno_from_nt_status: 32 bit codes: code=%08x\n",
NT_STATUS_V(status)));