netapi32: Remove unneeded casts of zero.
This commit is contained in:
parent
2320b81ba4
commit
9d69e41501
|
@ -98,7 +98,7 @@ static void wprint_mac(WCHAR* buffer, int len, const MIB_IFROW *ifRow)
|
|||
else
|
||||
buffer[2*i+1] = (WCHAR)((val & 0xf) + '0');
|
||||
}
|
||||
buffer[2*i]=(WCHAR)0;
|
||||
buffer[2*i]=0;
|
||||
}
|
||||
|
||||
/* Theoretically this could be too short, except that MS defines
|
||||
|
|
Loading…
Reference in New Issue