diff options
author | Thomas Voss <thomas.voss@humanwave.nl> | 2024-08-26 11:05:58 +0200 |
---|---|---|
committer | Thomas Voss <thomas.voss@humanwave.nl> | 2024-08-26 11:05:58 +0200 |
commit | 7f2660e2c061cac8bd375eab425a66445c7acda7 (patch) | |
tree | 64cf2724b8c59440d28ef9b34dd169077336703e /src | |
parent | c2d55d3ce75ec1eb20e95c8ddf6ecb8a411831c9 (diff) |
Add missing brace
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ main(int argc, char **argv) /* The number was too large. We asserted that the input didn’t start with ‘-’ so we can ignore checking for LONG_MIN. */ - if (n > INT_MAX) + if (n > INT_MAX) { errno = ERANGE; err(1, "%s", optarg); } |