diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-01-04 01:28:44 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-01-07 19:51:50 +0100 |
commit | 81655e1450a80276db32c8a8e10de73a256bc664 (patch) | |
tree | a3219323562bf2038daa4b7c893210fd2de5ab2d /package/base-files/Makefile | |
parent | 51360a913b492d042a697a9658a21f820a027fa1 (diff) | |
download | upstream-81655e1450a80276db32c8a8e10de73a256bc664.tar.gz upstream-81655e1450a80276db32c8a8e10de73a256bc664.tar.bz2 upstream-81655e1450a80276db32c8a8e10de73a256bc664.zip |
base-files: read all 3 bytes in get_magic_vfat() at once
While the speed improvement might be negligible, there is still no
reason to read individual bytes.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 8d40eb0e49..f18f221129 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/version.mk include $(INCLUDE_DIR)/feeds.mk PKG_NAME:=base-files -PKG_RELEASE:=245 +PKG_RELEASE:=246 PKG_FLAGS:=nonshared PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ |