diff options
| author | J08nY | 2024-12-01 13:56:04 +0100 |
|---|---|---|
| committer | J08nY | 2024-12-01 13:56:04 +0100 |
| commit | 23c460dff96f57a4fa480ab6426700b0be384f12 (patch) | |
| tree | 81a61274f2279556eb09547190e2baa41d0b89f1 /src/util | |
| parent | 2e3b816158447a963af903afe5259f3d82097aa3 (diff) | |
| download | ecgen-23c460dff96f57a4fa480ab6426700b0be384f12.tar.gz ecgen-23c460dff96f57a4fa480ab6426700b0be384f12.tar.zst ecgen-23c460dff96f57a4fa480ab6426700b0be384f12.zip | |
Add curve family generation.
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/memory.c b/src/util/memory.c index d18c01f..f05efae 100644 --- a/src/util/memory.c +++ b/src/util/memory.c @@ -46,7 +46,7 @@ void *try_calloc(size_t size) { return alloc(calloc_func, size); } void *try_realloc(void *ptr, size_t size) { void *result = realloc_func(ptr, size); if (!result) { - perror("Couldn't alloc."); + perror("Couldn't realloc."); exit(EXIT_FAILURE); } return result; |
