libqasan: Add missing return to qasan_swap (#2416)

This commit is contained in:
Niklas Gögge 2024-07-22 14:45:13 +01:00 committed by GitHub
parent e6b94f3715
commit 0999ac5003
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -361,6 +361,7 @@ void qasan_dealloc(const char *start) {
int qasan_swap(int state) { int qasan_swap(int state) {
QASAN_DEBUG("SWAP: %d\n", state); QASAN_DEBUG("SWAP: %d\n", state);
/* Do Nothing */ /* Do Nothing */
return 0;
} }
#endif #endif