- Timestamp:
- Jul 11, 2006, 10:13:37 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r48 r49 1 2 * fix sh_extern.c: sh_ext_add_default() cast to (void) was too early 3 (Solaris 8 build failure reported by Jesse) 4 * fix sh_unix.c: wrong prototype for sh_unix_mlock() 5 if HAVE_BROKEN_MLOCK (AIX 5.2 build failure reported by 6 Jonathan Kaufman) 7 1 8 2.2.1b (20-06-2006): 2 9 * fix compile error on SuSE 10.1 (reported by Leonhard Maylein) -
trunk/src/kern_head.c
r41 r49 143 143 if (fd < 0) 144 144 { 145 perror("read_kcode: open ");145 perror("read_kcode: open /dev/kmem"); 146 146 return -1; 147 147 } -
trunk/src/sh_extern.c
r34 r49 1077 1077 int sh_ext_add_default (const char * dummy) 1078 1078 { 1079 (void) dummy;1080 1079 char * p = NULL; 1081 1080 int i; 1081 1082 (void) dummy; 1082 1083 1083 1084 SL_ENTER(_("sh_ext_add_default")); … … 1102 1103 { 1103 1104 int i; 1105 1104 1106 SL_ENTER(_("sh_ext_add_environ")); 1105 1107 i = sh_ext_add_envv (NULL, str); -
trunk/src/sh_unix.c
r42 r49 3926 3926 } 3927 3927 #else 3928 int sh_unix_mlock (void * in_addr, size_t len) 3929 { 3928 int sh_unix_mlock (char * file, int line, void * in_addr, size_t len) 3929 { 3930 (void) file; (void) line; 3930 3931 (void) in_addr; (void) len; 3931 3932 return -1;
Note:
See TracChangeset
for help on using the changeset viewer.