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-concat.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-concat.c')
| -rw-r--r-- | src/blind-concat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blind-concat.c b/src/blind-concat.c index f6fe504..f59bee5 100644 --- a/src/blind-concat.c +++ b/src/blind-concat.c @@ -209,10 +209,10 @@ main(int argc, char *argv[]) ARGBEGIN { case 'o': - output_file = EARG(); + output_file = UARGF(); break; case 'j': - jobs = etozu_flag('j', EARG(), 1, SHRT_MAX); + jobs = etozu_flag('j', UARGF(), 1, SHRT_MAX); break; default: usage(); |
