diff options
| author | Mattias Andrée <maandree@kth.se> | 2017-04-08 13:57:36 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2017-04-08 13:57:36 +0200 |
| commit | 478b53f935264bdfe4efe394f8d804a1361a6770 (patch) | |
| tree | 31c87de7b67f928ff93b4564e0929d7db2a369f8 /src/blind-gauss-blur.c | |
| parent | Update TODO: blind-from-sent (diff) | |
| download | blind-478b53f935264bdfe4efe394f8d804a1361a6770.tar.gz blind-478b53f935264bdfe4efe394f8d804a1361a6770.tar.bz2 blind-478b53f935264bdfe4efe394f8d804a1361a6770.tar.xz | |
Document memory requirements, minor style fixes, more use of BUFSIZ, fix warnings, and fix potential buffer overflow
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/blind-gauss-blur.c')
| -rw-r--r-- | src/blind-gauss-blur.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blind-gauss-blur.c b/src/blind-gauss-blur.c index ef0ebba..542b44b 100644 --- a/src/blind-gauss-blur.c +++ b/src/blind-gauss-blur.c @@ -317,10 +317,10 @@ main(int argc, char *argv[]) measure_y_only = 1; break; case 'j': - jobs = etozu_flag('j', EARG(), 1, SHRT_MAX); + jobs = etozu_flag('j', UARGF(), 1, SHRT_MAX); break; case 's': - arg = EARG(); + arg = UARGF(); if (!strcmp(arg, "auto")) auto_spread = 1; else |
