8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:03:02 +01:00

Added missing paren.

This commit is contained in:
bellardo 2001-10-17 21:53:38 +00:00
parent 589d9fd216
commit e182582bef

View File

@ -21,7 +21,7 @@
* Contributor(s): ______________________________________.
*/
/*
$Id: isql.epp,v 1.3 2001-08-27 15:29:18 skywalker Exp $
$Id: isql.epp,v 1.4 2001-10-17 21:53:38 bellardo Exp $
Revision 1.5 2000/11/18 16:49:24 fsg
Increased PRINT_BUFFER_LENGTH to 2048 to show larger plans
Fixed Bug #122563 in extract.e get_procedure_args
@ -664,7 +664,7 @@ static void readNextInputLine(const char* prompt) {
// I've left it here as a guide.
lastInputLine = malloc(BUFFER_LENGTH512);
if (!ib_fgets(lastInputLine, BUFFER_LENGTH512, ib_stdin) {
if (!ib_fgets(lastInputLine, BUFFER_LENGTH512, ib_stdin)) {
free(lastInputLine);
lastInputLine = NULL;
}