about summary refs log tree commit diff
path: root/io/file_change_detection.c
Commit message (Collapse)AuthorAgeFilesLines
* Move implementation of <file_change_detection.h> into a C fileFlorian Weimer2020-02-181-0/+118
file_change_detection_for_stat partially initialize struct file_change_detection in some cases, when the size member alone determines the outcome of all comparisons. This results in maybe-uninitialized compiler warnings in case of sufficiently aggressive inlining. Once the implementation is moved into a separate C file, this kind of inlining is no longer possible, so the compiler warnings are gone.