aboutsummaryrefslogtreecommitdiffstats
path: root/src/raw.c
diff options
context:
space:
mode:
authorjames <>2008-03-06 21:33:02 +0000
committerjames <>2008-03-06 21:33:02 +0000
commit63a3f74532632a7e07b71f805eb806b05b3f19e3 (patch)
tree07e9b206c5f8d30e11e6780658ddedfc25e32c77 /src/raw.c
parent9d7972be8f555a5ece9a8e7b1b6275a9d7c0b212 (diff)
downloadsympathy-63a3f74532632a7e07b71f805eb806b05b3f19e3.tar.gz
sympathy-63a3f74532632a7e07b71f805eb806b05b3f19e3.tar.bz2
sympathy-63a3f74532632a7e07b71f805eb806b05b3f19e3.zip
*** empty log message ***
Diffstat (limited to 'src/raw.c')
-rw-r--r--src/raw.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/raw.c b/src/raw.c
index a7f01cd..2bfc977 100644
--- a/src/raw.c
+++ b/src/raw.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.4 2008/03/06 21:33:02 james
+ * *** empty log message ***
+ *
* Revision 1.3 2008/03/06 17:21:41 james
* *** empty log message ***
*
@@ -43,7 +46,6 @@ rx_raw_rx (RX * _r, int ch)
RX_Raw *r = (RX_Raw *) _r;
int ret;
uint8_t c = ch;
- printf("RX RAW %d\n",ch);
set_blocking(r->wfd);
ret=(write (r->wfd, &c, 1) == 1) ? 0 : -1;
}