diff options
Diffstat (limited to 'src/interfaces/ecpg/preproc/ecpg.c')
-rw-r--r-- | src/interfaces/ecpg/preproc/ecpg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c index 192e47eaa43..938559670f3 100644 --- a/src/interfaces/ecpg/preproc/ecpg.c +++ b/src/interfaces/ecpg/preproc/ecpg.c @@ -12,7 +12,7 @@ #include "extern.h" struct _include_path *include_paths; -int autocommit = 0; +int ret_value = OK, autocommit = 0; struct cursor *cur = NULL; struct typedefs *types = NULL; @@ -215,5 +215,5 @@ main(int argc, char *const argv[]) free(input_filename); } } - return OK; + return ret_value; } |