mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Fix pgproc names over 15 chars in output. Add strNcpy() function. remove some (void) casts that are unnecessary.
This commit is contained in:
@ -1255,7 +1255,7 @@ register char *cp;
|
||||
return;
|
||||
}
|
||||
|
||||
(void) strcpy(cs->multis + oldend - 1, cp);
|
||||
strcpy(cs->multis + oldend - 1, cp);
|
||||
cs->multis[cs->smultis - 1] = '\0';
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user