diff options
author | 2023-03-14 18:17:23 +0100 | |
---|---|---|
committer | 2023-03-14 18:17:23 +0100 | |
commit | 53a32c2aeb0e1f95ecbe5693e6c297495f5bba80 (patch) | |
tree | 8bc20d0409734a3ce86f3af1b58a7e0b81694551 /test | |
parent | c9cb97f8acb76b317dd4d913438c1098e752e90c (diff) | |
download | utils-53a32c2aeb0e1f95ecbe5693e6c297495f5bba80.tar.gz utils-53a32c2aeb0e1f95ecbe5693e6c297495f5bba80.zip |
Generify the function to get the version
Diffstat (limited to 'test')
-rw-r--r-- | test/test_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_list.c b/test/test_list.c index 8bfffe1..4df9203 100644 --- a/test/test_list.c +++ b/test/test_list.c @@ -173,7 +173,7 @@ test_list6() log("Running..."); char buff[127]; - sprintf(buff, "Version: %s", clist_version()); + sprintf(buff, "Version: %s", utils_version()); log(buff); log("OK\n"); |