aboutsummaryrefslogtreecommitdiff
path: root/i3-config-wizard
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2015-03-01 17:16:03 +0100
committerMichael Stapelberg <michael@stapelberg.de>2015-03-01 17:16:03 +0100
commit091f1db39ab2069e850718b7b42327f697a15060 (patch)
treed3eb3262e4eb388b46c99dd5888011ca0f011b57 /i3-config-wizard
parent0876bd621f91fdb8d7e7c649e6a6973accb9c95b (diff)
downloadi3-091f1db39ab2069e850718b7b42327f697a15060.tar.gz
i3-091f1db39ab2069e850718b7b42327f697a15060.zip
run clang-format (3.5.0)
Not quite sure why there are so many differences. Perhaps we’ve gotten out of the habit of running clang-format after every change. I guess it’d be best to have a travis hook that runs clang-format for us and reports any problems on pull requests.
Diffstat (limited to 'i3-config-wizard')
-rw-r--r--i3-config-wizard/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/i3-config-wizard/main.c b/i3-config-wizard/main.c
index c09d459d..5a855c40 100644
--- a/i3-config-wizard/main.c
+++ b/i3-config-wizard/main.c
@@ -494,7 +494,7 @@ static char *resolve_tilde(const char *path) {
static int handle_expose() {
/* re-draw the background */
xcb_rectangle_t border = {0, 0, 300, (15 * font.height) + 8};
- xcb_change_gc(conn, pixmap_gc, XCB_GC_FOREGROUND, (uint32_t[]) {get_colorpixel("#000000")});
+ xcb_change_gc(conn, pixmap_gc, XCB_GC_FOREGROUND, (uint32_t[]){get_colorpixel("#000000")});
xcb_poly_fill_rectangle(conn, pixmap, pixmap_gc, 1, &border);
set_font(&font);
@@ -870,7 +870,7 @@ int main(int argc, char *argv[]) {
XCB_WINDOW_CLASS_INPUT_OUTPUT,
XCB_WINDOW_CLASS_COPY_FROM_PARENT, /* copy visual from parent */
XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK,
- (uint32_t[]) {
+ (uint32_t[]){
0, /* back pixel: black */
XCB_EVENT_MASK_EXPOSURE |
XCB_EVENT_MASK_BUTTON_PRESS});