]> git.sur5r.net Git - i3/i3lock/commitdiff
clang-format-3.5
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 11 May 2018 11:40:18 +0000 (13:40 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 11 May 2018 11:40:18 +0000 (13:40 +0200)
i3lock.c

index 602ccca78a91d5171de81eed2a95ccee9b37f006..13adc2b43838402d6975eb945cbb94f954c67bd4 100644 (file)
--- a/i3lock.c
+++ b/i3lock.c
@@ -656,7 +656,7 @@ static bool verify_png_image(const char *image_path) {
 
     // Check PNG header according to the specification, available at:
     // https://www.w3.org/TR/2003/REC-PNG-20031110/#5PNG-file-signature
-    static unsigned char PNG_REFERENCE_HEADER[8] = { 137, 80, 78, 71, 13, 10, 26, 10 };
+    static unsigned char PNG_REFERENCE_HEADER[8] = {137, 80, 78, 71, 13, 10, 26, 10};
     if (memcmp(PNG_REFERENCE_HEADER, png_header, sizeof(png_header)) != 0) {
         fprintf(stderr, "File \"%s\" does not start with a PNG header. i3lock currently only supports loading PNG files.\n", image_path);
         return false;