diff options
| author | Derek Foreman <derek.foreman@collabora.com> | 2024-07-16 06:31:13 -0500 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2024-08-09 20:38:52 +0000 |
| commit | 58bb6c721126c12ab644bee557bef6825562440a (patch) | |
| tree | e25284dd549c4febc4487ecef0cabeb6135dcaf5 /cursor | |
| parent | doc: Require strings to be UTF-8 (diff) | |
| download | wayland-58bb6c721126c12ab644bee557bef6825562440a.tar wayland-58bb6c721126c12ab644bee557bef6825562440a.tar.gz wayland-58bb6c721126c12ab644bee557bef6825562440a.tar.bz2 wayland-58bb6c721126c12ab644bee557bef6825562440a.tar.lz wayland-58bb6c721126c12ab644bee557bef6825562440a.tar.xz wayland-58bb6c721126c12ab644bee557bef6825562440a.tar.zst wayland-58bb6c721126c12ab644bee557bef6825562440a.zip | |
src: Finish assert() clean-up
From cleanup commit 0cecde304:
assert()s can be compiled away by #defining NDEBUG. Some build systems
do this. Using wl_abort gives a human readable error message and it
isn't compiled away.
That commit missed one final assert, presumably due to missing it with
grep because of a coding style issue. Fix that up, and remove inclusion
of <assert.h> as appropriate.
Signed-off-by: Derek Foreman <derek.foreman@collabora.com>
Diffstat (limited to 'cursor')
| -rw-r--r-- | cursor/convert_font.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cursor/convert_font.c b/cursor/convert_font.c index 74e45fb..77e34c2 100644 --- a/cursor/convert_font.c +++ b/cursor/convert_font.c @@ -29,7 +29,6 @@ * http://fontforge.org/pcf-format.html */ -#include <assert.h> #include <fcntl.h> #include <stdint.h> #include <stdio.h> |
