diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-06-15 19:30:31 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-06-15 19:30:31 +0000 |
| commit | 6bd323c6b3f65b26273d5efb7ddd0ac04d039546 (patch) | |
| tree | 6106db4e7512e765ca8c48963fb750cb63fec96f /src/bin/pgtclsh/pgtkAppInit.c | |
| parent | 27db9ecd0b15abca733a99dab3bf9771ad70507d (diff) | |
| download | postgresql-6bd323c6b3f65b26273d5efb7ddd0ac04d039546.tar.gz | |
Remove un-needed braces around single statements.
Diffstat (limited to 'src/bin/pgtclsh/pgtkAppInit.c')
| -rw-r--r-- | src/bin/pgtclsh/pgtkAppInit.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/bin/pgtclsh/pgtkAppInit.c b/src/bin/pgtclsh/pgtkAppInit.c index bdb569cb3c..0bf685bd1a 100644 --- a/src/bin/pgtclsh/pgtkAppInit.c +++ b/src/bin/pgtclsh/pgtkAppInit.c @@ -75,13 +75,9 @@ int Tcl_AppInit(Tcl_Interp * interp) { if (Tcl_Init(interp) == TCL_ERROR) - { return TCL_ERROR; - } if (Tk_Init(interp) == TCL_ERROR) - { return TCL_ERROR; - } /* * Call the init procedures for included packages. Each call should @@ -93,9 +89,7 @@ Tcl_AppInit(Tcl_Interp * interp) */ if (Pgtcl_Init(interp) == TCL_ERROR) - { return TCL_ERROR; - } /* * Call Tcl_CreateCommand for application-specific commands, if they |
