aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-01 15:22:06 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-01 15:22:06 +0300
commite8f80bae97a835b6b256228d4bbeaf48ae16dcbb (patch)
tree82605e5f057840c314615d4581311c197033705d /include
parentbc600ecc3bdf0f189861dfb840f70c2339a7a853 (diff)
downloadkmi-e8f80bae97a835b6b256228d4bbeaf48ae16dcbb.tar.gz
kmi-e8f80bae97a835b6b256228d4bbeaf48ae16dcbb.zip
slight tweaks to sptree stuff
Diffstat (limited to 'include')
-rw-r--r--include/kmi/sp_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kmi/sp_tree.h b/include/kmi/sp_tree.h
index f1f9fca..88facef 100644
--- a/include/kmi/sp_tree.h
+++ b/include/kmi/sp_tree.h
@@ -110,10 +110,10 @@ struct sp_root {
/** Which side of the parent node a new node should be inserted to. */
enum sp_dir {
/** Left side. */
- LEFT,
+ SP_LEFT,
/** Right side. */
- RIGHT
+ SP_RIGHT
};
/**