shithub: rd

Download patch

ref: dd10b5ab57391a959da5b8dd586bc372e916b43f
parent: 65f684770c3d89be3f728b18cff4edae53c2859d
author: Yaroslav Kolomiiets <yarikos@gmail.com>
date: Wed Aug 10 06:48:42 EDT 2016

clipputmsg: reorder args

--- a/eclip.c
+++ b/eclip.c
@@ -35,7 +35,7 @@
 	uchar	*data;
 	uint		ndata;
 };
-static	int	clipputmsg(Clipmsg*,uchar*,int);
+static	int	clipputmsg(uchar*,int,Clipmsg*);
 static	int	clipgetmsg(Clipmsg*,uchar*,int);
 
 static	void	clipattached(Rdp*,Clipmsg*);
@@ -80,7 +80,7 @@
 	t.flags = 0;
 	t.fmtid = FmtUnicode;
 	t.ndata = 0;
-	n = clipputmsg(&t, a, sizeof(a));
+	n = clipputmsg(a, sizeof(a), &t);
 	if(sendvc(c, cliprdr, a, n) < 0)
 		fprint(2, "clipannounce: %r\n");
 }
@@ -96,7 +96,7 @@
 	t.flags = 0;
 	t.fmtid = FmtUnicode;
 	t.ndata = 0;
-	n = clipputmsg(&t, a, sizeof(a));
+	n = clipputmsg(a, sizeof(a), &t);
 	if(sendvc(c, cliprdr, a, n) < 0)
 		fprint(2, "cliprequest: %r\n");
 }
@@ -120,7 +120,7 @@
 	t.type = Cnoted;
 	t.flags = Fok;
 	t.ndata = 0;
-	n = clipputmsg(&t, a, sizeof(a));
+	n = clipputmsg(a, sizeof(a), &t);
 	if(sendvc(c, cliprdr, a, n) < 0)
 		fprint(2, "clipnoted: %r\n");
 }
@@ -153,7 +153,7 @@
   Respond:
 	t.data = b+8;
 	t.ndata = nb;
-	n = clipputmsg(&t, b, nb+8);
+	n = clipputmsg(b, nb+8, &t);
 	if(sendvc(c, cliprdr, b, n) < 0)
 		fprint(2, "cliprequested: %r\n");
 	free(b);
@@ -174,7 +174,7 @@
 }
 
 static int
-clipputmsg(Clipmsg *m, uchar *a, int n)
+clipputmsg(uchar *a, int n, Clipmsg *m)
 {
 	if(n < 8){
 		werrstr(Esmall);