File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.60 2003/03/20 06:43:35 momjian Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.61 2003/03/20 15:39:52 momjian Exp $
7
7
*/
8
8
#include "postgres_fe.h"
9
9
#include "common.h"
@@ -621,7 +621,7 @@ char parse_char(char **buf)
621
621
long l ;
622
622
623
623
l = strtol (* buf , buf , 0 );
624
- ( * buf ) -- ;
624
+ -- * buf ;
625
625
return (char )l ;
626
626
}
627
627
Original file line number Diff line number Diff line change 3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
6
- * $Header: /cvsroot/pgsql/src/bin/psql/prompt.c,v 1.23 2003/03/20 06:43:35 momjian Exp $
6
+ * $Header: /cvsroot/pgsql/src/bin/psql/prompt.c,v 1.24 2003/03/20 15:39:53 momjian Exp $
7
7
*/
8
8
#include "postgres_fe.h"
9
9
#include "prompt.h"
@@ -171,7 +171,7 @@ get_prompt(promptStatus_t status)
171
171
case '7' :
172
172
case '8' :
173
173
case '9' :
174
- * buf = parse_char (& p );
174
+ * buf = parse_char (( char * * ) & p );
175
175
break ;
176
176
177
177
case 'R' :
You can’t perform that action at this time.
0 commit comments