Commit 6bbab18d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Make INPUT_FSTAT_NB_READS a power of two to ease division

Some instruction sets can't divide (e.g. ARM), but pretty much all of
them can shift bits.
parent 4f2f56a5
......@@ -74,7 +74,7 @@
/* Number of read() calls needed until we check the file size through
* fstat() */
#define INPUT_FSTAT_NB_READS 10
#define INPUT_FSTAT_NB_READS 16
/*
* General limitations
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment