diff options
| author | Patrick Steinhardt <ps@pks.im> | 2019-06-29 09:17:32 +0200 |
|---|---|---|
| committer | Patrick Steinhardt <ps@pks.im> | 2019-07-20 19:11:20 +0200 |
| commit | e54343a4024e75dfaa940e652c2c9799d33634b2 (patch) | |
| tree | b483b313f4280db51a2a5aa29f53e6e9a2b2eb86 /src/odb_loose.c | |
| parent | 1f44079cae42864cb51d98ca57f5d1f4d8296693 (diff) | |
| download | libgit2-e54343a4024e75dfaa940e652c2c9799d33634b2.tar.gz | |
fileops: rename to "futils.h" to match function signatures
Our file utils functions all have a "futils" prefix, e.g.
`git_futils_touch`. One would thus naturally guess that their
definitions and implementation would live in files "futils.h" and
"futils.c", respectively, but in fact they live in "fileops.h".
Rename the files to match expectations.
Diffstat (limited to 'src/odb_loose.c')
| -rw-r--r-- | src/odb_loose.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odb_loose.c b/src/odb_loose.c index 4b249b6b6..04b81653b 100644 --- a/src/odb_loose.c +++ b/src/odb_loose.c @@ -10,7 +10,7 @@ #include <zlib.h> #include "git2/object.h" #include "git2/sys/odb_backend.h" -#include "fileops.h" +#include "futils.h" #include "hash.h" #include "odb.h" #include "delta.h" |
