mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Missing argument in function declaration in header. Drops old, unpatched revision. Closes: https://bugs.gentoo.org/944020 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40394 Signed-off-by: Sam James <sam@gentoo.org>
14 lines
374 B
Diff
14 lines
374 B
Diff
Add missing argument in function declaration, C23
|
|
https://bugs.gentoo.org/944020
|
|
--- a/bg.h
|
|
+++ b/bg.h
|
|
@@ -9,7 +9,7 @@
|
|
#include <glib.h>
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
-void bg_init();
|
|
+void bg_init(Display *dpyn);
|
|
void bg_rootbg_changed();
|
|
GdkPixmap *bg_new_for_win(Window win);
|
|
void modify_drawable(GdkDrawable *base, GdkGC *gc, guint32 tintcolor, gint alpha);
|