Skip to content

Commit c42c6a6

Browse files
author
webdevred
committed
Formatting changes
1 parent fd5ebf1 commit c42c6a6

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

include/wpc/wpc_imagemagick.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
BEGIN_IGNORE_WARNINGS
66
#ifdef WPC_IMAGEMAGICK_7
7-
#include <MagickWand/MagickWand.h>
7+
#include <MagickWand/MagickWand.h>
88
#else
9-
#include <wand/MagickWand.h>
9+
#include <wand/MagickWand.h>
1010
#endif
1111
END_IGNORE_WARNINGS
1212

nob.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
#define NOB_EXPERIMENTAL_DELETE_OLD
66

77
#if defined(__clang__)
8-
#define NOB_REBUILD_URSELF(binary_path, source_path) \
9-
"clang", "-MJ", "build/nob.o.json", "-o", binary_path, source_path
8+
#define NOB_REBUILD_URSELF(binary_path, source_path) \
9+
"clang", "-MJ", "build/nob.o.json", "-o", binary_path, source_path
1010
#else
11-
#define NOB_REBUILD_URSELF(binary_path, source_path) \
12-
"cc", "-o", binary_path, source_path
11+
#define NOB_REBUILD_URSELF(binary_path, source_path) \
12+
"cc", "-o", binary_path, source_path
1313
#endif
1414

1515
#include "nob.h"

src/gui.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ END_IGNORE_WARNINGS
1717
#include "wpc/wallpaper.h"
1818

1919
#ifdef WPC_ENABLE_HELPER
20-
#include "wpc/lightdm.h"
20+
#include "wpc/lightdm.h"
2121
#endif
2222

2323
static const gchar css[] =

src/wallpaper_transformation.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ extern bool transform_wallpaper_tiled(MagickWand **wand_ptr, Monitor *monitor) {
113113
MagickCompositeImage(tiled_wand, wand, OverCompositeOp, MagickTrue,
114114
(glong)img_w * i, (glong)img_h * j);
115115
#else
116-
MagickCompositeImage(tiled_wand, wand, OverCompositeOp, img_w * i,
117-
img_h * j);
116+
MagickCompositeImage(tiled_wand, wand, OverCompositeOp, (glong)img_w * i,
117+
(glong)img_h * j);
118118
#endif
119119
}
120120
}

0 commit comments

Comments
 (0)