Commit 9d69e415 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

netapi32: Remove unneeded casts of zero.

parent 2320b81b
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment