diff options
author | Camil Staps | 2015-07-06 15:31:13 +0200 |
---|---|---|
committer | Camil Staps | 2015-07-06 15:31:13 +0200 |
commit | a63390fb65054e3fa272c06e874e8dc1f5984bdf (patch) | |
tree | 9dc1ac75a69b6e0ee3c8821e04c4b1f0132dd2df /Linux_C_12/cCrossCallClipboard_121.c | |
parent | Library malloc fix (diff) |
Casting warnings
Diffstat (limited to 'Linux_C_12/cCrossCallClipboard_121.c')
-rw-r--r-- | Linux_C_12/cCrossCallClipboard_121.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Linux_C_12/cCrossCallClipboard_121.c b/Linux_C_12/cCrossCallClipboard_121.c index bc7e2df..014349b 100644 --- a/Linux_C_12/cCrossCallClipboard_121.c +++ b/Linux_C_12/cCrossCallClipboard_121.c @@ -8,6 +8,7 @@ About this module:
Routines related to clipboard handling.
********************************************************************************************/
+#include <string.h>
#include "cCrossCallClipboard_121.h"
#include "cCrossCall_121.h"
@@ -42,7 +43,7 @@ void EvalCcRqGETCLIPBOARDTEXT (CrossCallInfo *pcci) /* no params; string resul result = g_strdup(text);
g_free(text);
- MakeReturn1Cci (pcci, (int) result);
+ MakeReturn1Cci (pcci, (int64_t) result);
}
/* Install the cross call procedures in the gCrossCallProcedureTable of cCrossCall_121.
|