1
0
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:
Bruce Momjian
2003-10-11 18:04:26 +00:00
parent 47ed43440e
commit 7fb9893f42
5 changed files with 13 additions and 13 deletions

View File

@ -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: