1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Typecasts, etc. to make compile work on AIX. Thanks Darren King..

This commit is contained in:
Bryan Henderson
1996-11-24 04:44:24 +00:00
parent d3f9d6ad4f
commit 092c7a6be5
4 changed files with 15 additions and 15 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.2 1996/11/10 02:26:15 bryanh Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/fmgr/dfmgr.c,v 1.3 1996/11/24 04:44:14 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@@ -204,7 +204,7 @@ handle_load(char *filename, char *funcname)
return((func_ptr) NULL);
}
retval = pg_dlsym(file_scanner->handle, funcname);
retval = (func_ptr) pg_dlsym(file_scanner->handle, funcname);
if (retval == (func_ptr) NULL) {
elog(WARN, "Can't find function %s in file %s", funcname, filename);

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.1.1.1 1996/07/09 06:22:09 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.2 1996/11/24 04:44:17 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@@ -109,9 +109,8 @@ pstrdup(char* string)
{
char *nstr;
nstr = strcpy((char *)palloc(strlen(string)+1), string);
nstr = (char *)palloc(strlen(string)+1);
strcpy(nstr, string);
return nstr;
}