diff options
author | David Turner <david@freetype.org> | 2000-10-23 22:46:56 +0000 |
---|---|---|
committer | David Turner <david@freetype.org> | 2000-10-23 22:46:56 +0000 |
commit | dc26e7b77f6751d014123ccebbd78d9a0603f030 (patch) | |
tree | 6c2710a01f9ba2efba64d632511ff3004b30f3cf /src/base/ftinit.c | |
parent | 8aed85292358a9e0f89931fa0d1f5ca72e591f31 (diff) |
- minor reformatting of "ftmodule.h"
- added missing "const" statements in the source code in order
to really get rid of writable static variables
Diffstat (limited to 'src/base/ftinit.c')
-rw-r--r-- | src/base/ftinit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/ftinit.c b/src/base/ftinit.c index ed060d5a..b5a4abeb 100644 --- a/src/base/ftinit.c +++ b/src/base/ftinit.c @@ -65,8 +65,8 @@ #define FT_USE_MODULE( x ) (const FT_Module_Class*)&x, static -const FT_Module_Class* ft_default_modules[] = - { +const FT_Module_Class* const ft_default_modules[] = +const { #include <freetype/config/ftmodule.h> 0 }; |