Skip to content
Snippets Groups Projects
Commit 6bbab18d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

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
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment