diff options
| author | me <me@me-mac.lan> | 2015-09-29 08:37:57 -0700 |
|---|---|---|
| committer | me <me@me-mac.lan> | 2015-09-29 08:37:57 -0700 |
| commit | f0cbc763d0253b4e157b431e7d28dfd7abe65190 (patch) | |
| tree | 3b5e2e71a009849521da28e014346db7533e9f93 | |
| parent | fc60a1283de27fd5c2fe02b7b307eefc66fb2a63 (diff) | |
#ifdef CONFIG_HAVE_OWN_OFLAGS should be #if. Also, if CONFIG_HAVE_OWN_OFLAGS == 1, the definitions from ext4.h is used instead of the one provided by your OS.
| -rw-r--r-- | lwext4/ext4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lwext4/ext4.h b/lwext4/ext4.h index 9702031..a09d0cc 100644 --- a/lwext4/ext4.h +++ b/lwext4/ext4.h @@ -47,7 +47,7 @@ /********************************FILE OPEN FLAGS*****************************/ -#ifdef CONFIG_HAVE_OWN_OFLAGS +#if CONFIG_HAVE_OWN_OFLAGS #ifndef O_RDONLY #define O_RDONLY 00 |
