aboutsummaryrefslogtreecommitdiff
path: root/src/query.hh
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-07-18 18:40:57 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-07-18 18:40:57 -0300
commit638244fd078fe91971e57b1d06e4499268d99c42 (patch)
treec98efd5094b8065946250ee765c65fba7bc01b03 /src/query.hh
parent6d498fe17dab48cfd8fc8a4da62a573b799e10ba (diff)
downloadgame-638244fd078fe91971e57b1d06e4499268d99c42.tar.gz
game-638244fd078fe91971e57b1d06e4499268d99c42.zip
small cleanup + fix sigaction flags
Diffstat (limited to 'src/query.hh')
-rw-r--r--src/query.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/query.hh b/src/query.hh
index 6ac6afb..583f96b 100644
--- a/src/query.hh
+++ b/src/query.hh
@@ -5,9 +5,9 @@
#include "threads.hh"
enum : int {
- QUERY_OK = 0,
- QUERY_ERROR = 1,
- QUERY_FAILED = 3,
+ QUERY_STATUS_OK = 0,
+ QUERY_STATUS_ERROR = 1,
+ QUERY_STATUS_FAILED = 3,
};
struct TQueryManagerConnection{