mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Back out -fstrict-aliasing void* casting.
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
|
||||
*
|
||||
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.104 2003/10/11 16:30:55 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.105 2003/10/11 18:04:26 momjian Exp $
|
||||
*/
|
||||
#include "postgres_fe.h"
|
||||
#include "command.h"
|
||||
@ -1280,7 +1280,7 @@ unescape(const unsigned char *source, size_t len)
|
||||
case '7':
|
||||
case '8':
|
||||
case '9':
|
||||
c = parse_char((void *) &p);
|
||||
c = parse_char((char **) &p);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Reference in New Issue
Block a user