Let libburner warn programmers if they forget to set 64 bit off_t
This commit is contained in:
parent
fafc190fd4
commit
e787d328c7
@ -1 +1 @@
|
|||||||
#define Cdrskin_timestamP "2010.03.29.103141"
|
#define Cdrskin_timestamP "2010.04.04.181237"
|
||||||
|
@ -732,6 +732,13 @@ int main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
int ret;
|
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);
|
ret = libburner_setup(argc, argv);
|
||||||
if (ret)
|
if (ret)
|
||||||
exit(ret);
|
exit(ret);
|
||||||
|
Loading…
Reference in New Issue
Block a user