1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-12 02:37:31 +03:00

Remove compile warning.

This commit is contained in:
Bruce Momjian
2003-03-20 15:39:53 +00:00
parent cf4cee1b17
commit 4422fe6017
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.60 2003/03/20 06:43:35 momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.61 2003/03/20 15:39:52 momjian Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -621,7 +621,7 @@ char parse_char(char **buf)
long l;
l = strtol(*buf, buf, 0);
(*buf)--;
--*buf;
return (char)l;
}