diff options
Diffstat (limited to 'release/sysinstall/options.c')
-rw-r--r-- | release/sysinstall/options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/release/sysinstall/options.c b/release/sysinstall/options.c index e4b241e..3267eb160 100644 --- a/release/sysinstall/options.c +++ b/release/sysinstall/options.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated for what's essentially a complete rewrite. * - * $Id: options.c,v 1.4 1995/10/06 08:47:40 jkh Exp $ + * $Id: options.c,v 1.5 1995/10/06 11:14:43 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -264,12 +264,12 @@ optionsEditor(char *str) case 'Q': clear(); dialog_clear(); - return 0; + return RET_SUCCESS; default: beep(); } } /* NOTREACHED */ - return 0; + return RET_SUCCESS; } |