Let libburner warn programmers if they forget to set 64 bit off_t

This commit is contained in:
Thomas Schmitt 2010-04-04 18:13:45 +00:00
vanhempi fafc190fd4
commit e787d328c7
2 muutettua tiedostoa jossa 8 lisäystä ja 1 poistoa

Näytä tiedosto

@ -1 +1 @@
#define Cdrskin_timestamP "2010.03.29.103141"
#define Cdrskin_timestamP "2010.04.04.181237"

Näytä tiedosto

@ -732,6 +732,13 @@ int main(int argc, char **argv)
{
int ret;
/* A warning to programmers who start their own projekt from here. */
if (sizeof(off_t) != 8) {
fprintf(stderr,
"\nFATAL: Compile time misconfiguration. off_t is not 64 bit.\n\n");
exit(39);
}
ret = libburner_setup(argc, argv);
if (ret)
exit(ret);