SDL_strncpy doesn't exist
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401735
This commit is contained in:
parent
e869c2f9b8
commit
c9fe6a7e45
1 changed files with 2 additions and 2 deletions
|
@ -400,7 +400,7 @@ static int gpm_available(char *proto, size_t protolen)
|
|||
t = arg + arglen;
|
||||
s = SDL_strchr(t, ' ');
|
||||
if (s) *s = 0;
|
||||
SDL_strncpy(raw_proto, t, SDL_arraysize(raw_proto));
|
||||
SDL_strlcpy(raw_proto, t, SDL_arraysize(raw_proto));
|
||||
if (s) *s = ' ';
|
||||
}
|
||||
if ( SDL_strncmp(arg, "-R", 2) == 0 ) {
|
||||
|
@ -409,7 +409,7 @@ static int gpm_available(char *proto, size_t protolen)
|
|||
t = arg + 2;
|
||||
s = SDL_strchr(t, ' ');
|
||||
if (s) *s = 0;
|
||||
SDL_strncpy(repeat_proto, t, SDL_arraysize(repeat_proto));
|
||||
SDL_strlcpy(repeat_proto, t, SDL_arraysize(repeat_proto));
|
||||
if (s) *s = ' ';
|
||||
}
|
||||
len -= arglen;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue