Skip to content
This repository was archived by the owner on Mar 27, 2020. It is now read-only.

Commit c78d667

Browse files
committed
Tiny name change
1 parent 9264661 commit c78d667

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

dropbox_ext4.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
#include <linux/magic.h>
99

1010
int statfs64(const char *path, struct statfs64 *buf) {
11-
static int (*_orig_statfs64)(const char *path, struct statfs64 *buf) = NULL;
11+
static int (*orig_statfs64)(const char *path, struct statfs64 *buf) = NULL;
1212

13-
if (_orig_statfs64 == NULL) {
14-
_orig_statfs64 = dlsym(RTLD_NEXT, "statfs64");
13+
if (orig_statfs64 == NULL) {
14+
orig_statfs64 = dlsym(RTLD_NEXT, "statfs64");
1515
}
1616

17-
int retval = _orig_statfs64(path, buf);
17+
int retval = orig_statfs64(path, buf);
1818
if (retval == 0) {
1919
buf->f_type = EXT4_SUPER_MAGIC;
2020
}

0 commit comments

Comments
 (0)