libsupport: Fix build on gcc 11.2

This commit is contained in:
Alexander von Gluck IV 2023-03-07 09:36:07 -06:00
parent dce82c2ba2
commit 1168785a62

View File

@ -64,7 +64,7 @@ KeyMap<KEY, TYPE>::ValueFor(KEY k, bool* found) const
}
if (i == fMap.end())
return NULL;
return 0;
return i->second;
}