1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3:param: Fix size types

This fixes compilation with -Wstrict-overflow=2

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider 2017-12-07 17:03:37 +01:00 committed by Jeremy Allison
parent c63ed7b656
commit 87ebb195d3

View File

@ -1833,8 +1833,8 @@ static bool is_synonym_of(int parm1, int parm2, bool *inverse)
static void show_parameter(int parmIndex)
{
int enumIndex, flagIndex;
int parmIndex2;
size_t enumIndex, flagIndex;
size_t parmIndex2;
bool hadFlag;
bool hadSyn;
bool inverse;