sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 78c2e293282d20a2627f68a5b2921b2066ade2a3
parent 9fb020d04c487904ef3d87a15bbdc885cca886e7
Author: Christoph Gysin <christoph.gysin@gmail.com>
Date:   Wed, 25 Nov 2015 16:53:02 +0200

swaybg: make argv const

Diffstat:
Mswaybg/main.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/swaybg/main.c b/swaybg/main.c @@ -23,7 +23,7 @@ void sway_terminate(void) { exit(1); } -int main(int argc, char **argv) { +int main(int argc, const char **argv) { init_log(L_INFO); surfaces = create_list(); registry = registry_poll(); @@ -49,7 +49,7 @@ int main(int argc, char **argv) { desktop_shell_set_background(registry->desktop_shell, output->output, window->surface); list_add(surfaces, window); - char *scaling_mode = argv[3]; + const char *scaling_mode = argv[3]; cairo_surface_t *image = cairo_image_surface_create_from_png(argv[2]); double width = cairo_image_surface_get_width(image); double height = cairo_image_surface_get_height(image);