USBDDriver.c: swaped args to memset

This commit is contained in:
Christina Quast
2015-05-08 16:06:33 +02:00
parent bfd7354c86
commit ae82155866

View File

@@ -457,7 +457,7 @@ void USBDDriver_Initialize(
if (pInterfaces != 0) {
memset(pInterfaces, sizeof(pInterfaces), 0);
memset(pInterfaces, 0, sizeof(*pInterfaces));
}
}