blob: 735e31418e09b2d4aac0b6ffcd8290c648072780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
Description: Fix -Wmaybe-uninitialized compiler warning.
In particular, the following warning:
wmcliphist.c: In function 'main':
wmcliphist.c:386:11: warning: 'icon_file' may be used uninitialized in this function
[-Wmaybe-uninitialized]
surface = cairo_image_surface_create_from_png(icon_file);
^
Author: Doug Torrance <dtorrance@piedmont.edu>
Last-Update: 2014-11-23
--- a/wmcliphist.c
+++ b/wmcliphist.c
@@ -203,6 +203,9 @@
/* creat dock icon */
dock_app = foo_create_main_icon_window(main_window, icon_size);
+ /* set default icon */
+ icon_file = "ico_60x060_gray.png";
+
if (icon_size) {
/* create icon_mask */
if (icon_size == 60) {
|