Commit 8192eca2 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix typo in compare_buffered_updates.

parent 77ac7990
...@@ -760,7 +760,7 @@ compare_buffered_updates(const void *av, const void *bv) ...@@ -760,7 +760,7 @@ compare_buffered_updates(const void *av, const void *bv)
if(v4a > v4b) if(v4a > v4b)
return 1; return 1;
else if(v4b < v4a) else if(v4a < v4b)
return -1; return -1;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment