Clean up codesniffer issues

This commit is contained in:
Jack Zeal 2026-03-26 21:50:55 -07:00
parent 476626b7b5
commit f7d2be37ea
4 changed files with 4 additions and 9 deletions

View file

@ -3,9 +3,6 @@
#define LABWC_LAB_SCENE_RECT_H
#include <wayland-server-core.h>
// Ensure we can access theme data to decide if we need bevels
extern struct rcxml rc;
struct wlr_scene_tree;
struct lab_scene_rect_options {

View file

@ -65,7 +65,6 @@
#define LAB_WLR_VERSION_AT_LEAST(major, minor, micro) \
(WLR_VERSION_NUM >= (((major) << 16) | ((minor) << 8) | (micro)))
/**
* PIXEL () - calculate pixel offset in an array of "bw" columns wide.
*
@ -73,7 +72,7 @@
* @param y y-coordinate
* Assumes "bw" was defined externally
*/
#define PIXEL(x,y) (bw * y + x)
#define PIXEL(x, y) (bw * y + x)
#endif /* LABWC_MACROS_H */