diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-01 17:22:32 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-01 17:22:32 +0900 |
| commit | 1feaed7cc0457e3cdafe0c0ce8119ae6ec618cb8 (patch) | |
| tree | d21734a67ae416b317c120c905d939366eb865d1 | |
| parent | 8e2288b4463a0dbe89fccc63f5120746ca5d18ae (diff) | |
| download | tdeutils-1feaed7cc0457e3cdafe0c0ce8119ae6ec618cb8.tar.gz tdeutils-1feaed7cc0457e3cdafe0c0ce8119ae6ec618cb8.zip | |
Fix FTBFS with gcc 15. This resolves issue 97
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
| -rw-r--r-- | ksim/monitors/lm_sensors/NVCtrl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksim/monitors/lm_sensors/NVCtrl.c b/ksim/monitors/lm_sensors/NVCtrl.c index 6c61b8a..fe5b5c4 100644 --- a/ksim/monitors/lm_sensors/NVCtrl.c +++ b/ksim/monitors/lm_sensors/NVCtrl.c @@ -38,8 +38,8 @@ static const char *nvctrl_extension_name = NV_CONTROL_NAME; #define XNVCTRLSimpleCheckExtension(dpy,i) \ XextSimpleCheckExtension (dpy, i, nvctrl_extension_name) -static int close_display(); -static Bool wire_to_event(); +static int close_display(Display*, XExtCodes*); +static Bool wire_to_event(Display*, XEvent*, xEvent*); static const XExtensionHooks nvctrl_extension_hooks = { NULL, /* create_gc */ NULL, /* copy_gc */ |
