diff options
author | Volker Lendecke <vl@samba.org> | 2008-12-14 13:11:41 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-12-14 13:13:37 +0100 |
commit | 31f157a04b2f26537c9da4aa39bdcdde7b41e64b (patch) | |
tree | b668b93a27c8a5035f8ac28144758bc449a58f6b /source3/include | |
parent | 5887857a247622cff80d2fff9ef2d45cd7516dfb (diff) | |
download | samba-31f157a04b2f26537c9da4aa39bdcdde7b41e64b.tar.gz samba-31f157a04b2f26537c9da4aa39bdcdde7b41e64b.tar.bz2 samba-31f157a04b2f26537c9da4aa39bdcdde7b41e64b.zip |
Move 128 bytes from the data to the text segment
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb_macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index 119ceeb158..5149da0cb3 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -333,7 +333,7 @@ do { \ /* Warning - this must only be called with 0 <= c < 128. IT WILL * GIVE GARBAGE if c > 128 or c < 0. JRA. */ -extern char toupper_ascii_fast_table[]; +extern const char toupper_ascii_fast_table[]; #define toupper_ascii_fast(c) toupper_ascii_fast_table[(unsigned int)(c)]; #endif |