diff options
author | Michele Calgaro <[email protected]> | 2024-04-14 23:44:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-04-14 23:44:37 +0900 |
commit | a535b014a3a7360ec6b90d7921dc377c91f32395 (patch) | |
tree | a87e200354bf40990a8f8b73ed3f464a04f4424b | |
parent | 2bffde85ad998c66016b9dd91fb238821b2f4642 (diff) | |
download | tdebindings-a535b014a3a7360ec6b90d7921dc377c91f32395.tar.gz tdebindings-a535b014a3a7360ec6b90d7921dc377c91f32395.zip |
Fix FTBFS caused by incompatible cast
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | dcopc/dcopc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dcopc/dcopc.c b/dcopc/dcopc.c index 5db11c1d..3c29f6e8 100644 --- a/dcopc/dcopc.c +++ b/dcopc/dcopc.c @@ -351,7 +351,7 @@ static gboolean dcop_client_attach_internal( DcopClient *client, gboolean anonym (char *)(DCOPReleaseString), 1, DCOPVersions, DCOPAuthCount, - (char **)(DCOPAuthNames), + DCOPAuthNames, DCOPClientAuthProcs, 0 ) ) < 0 ) { ERR( "Communications could not be established." ); |