diff options
author | William Wennerström <william@wstrm.dev> | 2020-12-07 16:16:15 +0100 |
---|---|---|
committer | William Wennerström <william@wstrm.dev> | 2020-12-07 16:16:15 +0100 |
commit | 867d89546931a37fd255cdd5af382e39b66ae09b (patch) | |
tree | 14ace04e2c2ed7528ec380cefbf3f8eca3ca6e26 /src/tools | |
parent | 4a1c118b8b575e3fa3c576106bce57efb786f225 (diff) | |
download | profani-tty-867d89546931a37fd255cdd5af382e39b66ae09b.tar.gz |
Add tests for format_call_external_argv
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/aesgcm_download.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/aesgcm_download.c b/src/tools/aesgcm_download.c index 20397b82..96f8d7e8 100644 --- a/src/tools/aesgcm_download.c +++ b/src/tools/aesgcm_download.c @@ -155,7 +155,7 @@ aesgcm_file_get(void* userdata) aesgcm_dl->filename, aesgcm_dl->filename); - // TODO(wstrm): Log the error. + // TODO: Log the error. if (!call_external(argv, NULL, NULL)) { http_print_transfer_update(aesgcm_dl->window, aesgcm_dl->url, "Downloading '%s' failed: Unable to call " @@ -163,7 +163,7 @@ aesgcm_file_get(void* userdata) aesgcm_dl->url, aesgcm_dl->cmd_template, aesgcm_dl->filename, - "TODO(wstrm): Log the error"); + "TODO: Log the error"); } g_strfreev(argv); |