diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-19 03:28:27 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-19 03:28:27 +0300 |
commit | 5c9ff8df8f4d077560a2b8f210dffcff1e43423c (patch) | |
tree | 3afe38c6cf995c5fd6faac73cc9e0351d742c73d | |
parent | fix stderr output in executables (diff) | |
download | aes-tools-5c9ff8df8f4d077560a2b8f210dffcff1e43423c.tar.gz aes-tools-5c9ff8df8f4d077560a2b8f210dffcff1e43423c.zip |
error message update
Diffstat (limited to '')
-rw-r--r-- | src/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.c b/src/error.c index 4985cca..bf35668 100644 --- a/src/error.c +++ b/src/error.c @@ -53,7 +53,7 @@ static size_t aesni_format_null_argument_error( char* dest, size_t dest_size) { - static const char* const fmt = "Invalid argument value NULL (argument name: '%s')"; + static const char* const fmt = "Invalid argument value NULL for parameter '%s'"; const char* const param_name = err_details->params.null_arg.param_name; if (dest == NULL && dest_size == 0) |