diff --git a/compositor/main.c b/compositor/main.c index 5b78cbab..1b8c5810 100644 --- a/compositor/main.c +++ b/compositor/main.c @@ -62,7 +62,7 @@ #include #include #include -#include +#include #include "../remoting/remoting-plugin.h" #define WINDOW_TITLE "Weston Compositor" diff --git a/compositor/weston-screenshooter.c b/compositor/weston-screenshooter.c index b2aaf22f..ed354b0c 100644 --- a/compositor/weston-screenshooter.c +++ b/compositor/weston-screenshooter.c @@ -32,7 +32,7 @@ #include "weston.h" #include "weston-screenshooter-server-protocol.h" #include "shared/helpers.h" -#include +#include struct screenshooter { struct weston_compositor *ec; diff --git a/include/libweston/meson.build b/include/libweston/meson.build index 6ce8c9ce..2af2c0ef 100644 --- a/include/libweston/meson.build +++ b/include/libweston/meson.build @@ -5,7 +5,7 @@ install_headers( 'plugin-registry.h', 'timeline-object.h', 'windowed-output-api.h', - 'weston-debug.h', + 'weston-log.h', 'zalloc.h', subdir: dir_include_libweston_install ) diff --git a/include/libweston/weston-debug.h b/include/libweston/weston-log.h similarity index 97% rename from include/libweston/weston-debug.h rename to include/libweston/weston-log.h index 190938bf..21e9ea02 100644 --- a/include/libweston/weston-debug.h +++ b/include/libweston/weston-log.h @@ -23,8 +23,8 @@ * SOFTWARE. */ -#ifndef WESTON_DEBUG_H -#define WESTON_DEBUG_H +#ifndef WESTON_LOG_H +#define WESTON_LOG_H #include #include @@ -94,4 +94,4 @@ weston_log_scope_timestamp(struct weston_log_scope *scope, } #endif -#endif /* WESTON_DEBUG_H */ +#endif /* WESTON_LOG_H */ diff --git a/libweston/backend-drm/drm-internal.h b/libweston/backend-drm/drm-internal.h index cbda0a5f..6f5a9880 100644 --- a/libweston/backend-drm/drm-internal.h +++ b/libweston/backend-drm/drm-internal.h @@ -52,7 +52,7 @@ #include #include -#include +#include #include "shared/helpers.h" #include "libinput-seat.h" #include "backend.h" diff --git a/libweston/backend-drm/drm.c b/libweston/backend-drm/drm.c index 5fb20355..041a15a5 100644 --- a/libweston/backend-drm/drm.c +++ b/libweston/backend-drm/drm.c @@ -51,7 +51,7 @@ #include #include -#include +#include #include "drm-internal.h" #include "shared/helpers.h" #include "shared/timespec-util.h" diff --git a/libweston/compositor.c b/libweston/compositor.c index a58802f9..b637fbb7 100644 --- a/libweston/compositor.c +++ b/libweston/compositor.c @@ -56,7 +56,7 @@ #include "timeline.h" #include -#include +#include #include "linux-dmabuf.h" #include "viewporter-server-protocol.h" #include "presentation-time-server-protocol.h" diff --git a/libweston/content-protection.c b/libweston/content-protection.c index 689a2ec8..63aa7337 100644 --- a/libweston/content-protection.c +++ b/libweston/content-protection.c @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include "compositor/weston.h" #include "weston-content-protection-server-protocol.h" #include "shared/helpers.h" diff --git a/libweston/meson.build b/libweston/meson.build index 941eed9d..a16c87c4 100644 --- a/libweston/meson.build +++ b/libweston/meson.build @@ -27,7 +27,7 @@ srcs_libweston = [ 'timeline.c', 'touch-calibration.c', 'weston-log-wayland.c', - 'weston-debug.c', + 'weston-log.c', 'zoom.c', '../shared/matrix.c', linux_dmabuf_unstable_v1_protocol_c, diff --git a/libweston/weston-log-wayland.c b/libweston/weston-log-wayland.c index 5dffabb1..c5e30fca 100644 --- a/libweston/weston-log-wayland.c +++ b/libweston/weston-log-wayland.c @@ -25,7 +25,7 @@ #include "config.h" -#include +#include #include "helpers.h" #include diff --git a/libweston/weston-debug.c b/libweston/weston-log.c similarity index 99% rename from libweston/weston-debug.c rename to libweston/weston-log.c index e1e6cefd..a023d328 100644 --- a/libweston/weston-debug.c +++ b/libweston/weston-log.c @@ -26,7 +26,7 @@ #include "config.h" -#include +#include #include "helpers.h" #include diff --git a/xwayland/xwayland.h b/xwayland/xwayland.h index d42d33c4..a9b4829d 100644 --- a/xwayland/xwayland.h +++ b/xwayland/xwayland.h @@ -33,7 +33,7 @@ #include #include "compositor/weston.h" #include -#include +#include #define SEND_EVENT_MASK (0x80) #define EVENT_TYPE(event) ((event)->response_type & ~SEND_EVENT_MASK)