2007/5/18, Ilpo Järvinen <ilpo.jarvinen@xxxxxxxxxxx>:
...sizeof(size_t) == sizeof(int) should hold...
what I have reported is not necessarily the cause of your error. Yes BUT size_t is UNSIGNED and ssize_t is SIGNED. The problem is that We store a signed return value into a unsigned variable. So the check against -1 has no sense. and please note that also sizeof(int) == sizeof(unsigned int), but -1 is a signed int !! I repeat: this is not necessarily the cause of your error. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html