The MASM Forum
Projects => Poasm => Pelle's C compiler and tools => Topic started by: caballero on May 24, 2013, 07:32:35 PM
-
Hello, what PellesC means with this warning? For example in:
void ClearDIB () {
memset(pMainDIB, 0, cdXSize*cdYSize*4);
}
-
Adding a parameter of type void to the parameter list eliminated the warning.
void ClearDIB(void) {
memset(pMainDIB, 0, cdXSize*cdYSize*4);
}
-
Hi Alfonso,
Hello, what PellesC means with this warning? For example in:
void ClearDIB () {
memset(pMainDIB, 0, cdXSize*cdYSize*4);
}
yes, Michael is right. Its the easy way.
Gunther