diff options
| author | 2023-11-21 16:50:14 -0600 | |
|---|---|---|
| committer | 2023-11-21 16:50:14 -0600 | |
| commit | 921b24c2659489601b3b659062d305651924120b (patch) | |
| tree | 370f09791616d26dde192acdcd7cf17d686cb668 /src/ui/dock.c | |
| parent | add readme and license (diff) | |
fix trap
Diffstat (limited to 'src/ui/dock.c')
| -rw-r--r-- | src/ui/dock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dock.c b/src/ui/dock.c index 54c9fe9..5b39bd4 100644 --- a/src/ui/dock.c +++ b/src/ui/dock.c @@ -16,7 +16,7 @@ unsigned ui__dock_position_opposite(unsigned position) case UI__WINDOW_DOCK_RIGHT: return UI__WINDOW_DOCK_LEFT; default: - assert(false); /* trap: the center dock has no opposite! (or position is invalid) */ + abort(); /* trap: the center dock has no opposite! (or position is invalid) */ } } |
