about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/util/shhopt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/shhopt.h b/lib/util/shhopt.h
index fd15b53c..12b0ef22 100644
--- a/lib/util/shhopt.h
+++ b/lib/util/shhopt.h
@@ -191,7 +191,7 @@ typedef struct {
    Here is an example:
 
        unsigned int option_def_index = 0;
-       optEntry *option_def = malloc(100*sizeof(optEntry));
+       MALLOCARRAY_NOFAIL(option_def, 100);
        OPTENT3('h', "help",     OPT_FLAG, &help_flag, 0);
        OPTENT3(0,   "alphaout", OPT_STRING, &alpha_filename, 0);
 */