Fix wrong argument

One more catch by Florent Rougon.
This commit is contained in:
Thomas Geymayer
2017-11-13 08:20:47 +01:00
parent bc3404fcbe
commit ce7d463710

View File

@@ -789,7 +789,7 @@ void naGCRelease(int key)
int naNumSaved()
{
return naHash_size(globals->save_hash) + naVec_size(globals->save_hash);
return naHash_size(globals->save_hash) + naVec_size(globals->save);
}
void naClearSaved()