resident: Fixed syntax error with g++ compilation

A function used in a test was not returning a value, while an int was
expected so the test would fail to compile.

tests/resident.at: Return the result of atexit().
This commit is contained in:
Ileana Dumitrescu 2024-05-11 12:07:13 +03:00
parent d794bda49c
commit c1afb230e1
No known key found for this signature in database
GPG Key ID: 6570EA01146F7354

View File

@ -116,7 +116,7 @@ extern "C"
int
setup_plugin (void)
{
atexit (bye);
return atexit (bye);
}
]])