dorimanx / exfat-nofuse

Android ARM Linux non-fuse read/write kernel driver for exFat and VFat Android file systems
GNU General Public License v2.0
710 stars 326 forks source link

exfat_upcase.c: mark uni_upcase table as "const". #59

Closed biergaizi closed 9 years ago

biergaizi commented 9 years ago

uni_upcase is an array, which contains the upper case table of exfat. Since it is a read-only constant, it could be marked as "const" for better safety and compiler optimizations.

Signed-off-by: Tom Li biergaizi@member.fsf.org

dorimanx commented 9 years ago

Ok, seem good, thanks