diff options
Diffstat (limited to 'ext/GDBM_File/GDBM_File.xs')
| -rw-r--r-- | ext/GDBM_File/GDBM_File.xs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/GDBM_File/GDBM_File.xs b/ext/GDBM_File/GDBM_File.xs index 1ec5ea803d..3f18a4a28c 100644 --- a/ext/GDBM_File/GDBM_File.xs +++ b/ext/GDBM_File/GDBM_File.xs @@ -197,6 +197,10 @@ constant(char *name, int arg) errno = EINVAL; return 0; + if (0) { + goto not_there; /* -Wall */ + } + not_there: errno = ENOENT; return 0; |
