pidgin/android/libpurple

CID 732106: Arguments in wrong order
release-2.x.y
2013-02-18, Daniel Atallah
624cf59658dc
Parents 49eb0136f2ec
Children 96f89e35d24d
CID 732106: Arguments in wrong order
--- a/libpurple/protocols/silc/wb.c Mon Feb 18 22:46:53 2013 -0500
+++ b/libpurple/protocols/silc/wb.c Mon Feb 18 23:23:12 2013 -0500
@@ -192,7 +192,7 @@
/* Update whiteboard if its dimensions changed */
if (width != wbs->width || height != wbs->height)
- silcpurple_wb_set_dimensions(wb, height, width);
+ silcpurple_wb_set_dimensions(wb, width, height);
if (command == SILCPURPLE_WB_DRAW) {
/* Parse data and draw it */
--- a/libpurple/protocols/silc10/wb.c Mon Feb 18 22:46:53 2013 -0500
+++ b/libpurple/protocols/silc10/wb.c Mon Feb 18 23:23:12 2013 -0500
@@ -191,7 +191,7 @@
/* Update whiteboard if its dimensions changed */
if (width != wbs->width || height != wbs->height)
- silcpurple_wb_set_dimensions(wb, height, width);
+ silcpurple_wb_set_dimensions(wb, width, height);
if (command == SILCPURPLE_WB_DRAW) {
/* Parse data and draw it */