13
0

NOOP: fix brace/newline use

This commit is contained in:
Paul Davis 2020-02-20 00:09:32 -07:00
parent d1b335b36e
commit ca3714bccf

View File

@ -161,11 +161,9 @@ public:
bool can_seek (int64_t cnt) {
if (cnt > 0) {
return read_space() >= cnt;
}
else if (cnt < 0) {
} else if (cnt < 0) {
return g_atomic_int_get (&reserved) >= -cnt;
}
else {
} else {
return true;
}
}