diff options
author | james <> | 2008-03-06 21:33:02 +0000 |
---|---|---|
committer | james <> | 2008-03-06 21:33:02 +0000 |
commit | 63a3f74532632a7e07b71f805eb806b05b3f19e3 (patch) | |
tree | 07e9b206c5f8d30e11e6780658ddedfc25e32c77 /src/raw.c | |
parent | 9d7972be8f555a5ece9a8e7b1b6275a9d7c0b212 (diff) | |
download | sympathy-63a3f74532632a7e07b71f805eb806b05b3f19e3.tar.gz sympathy-63a3f74532632a7e07b71f805eb806b05b3f19e3.tar.bz2 sympathy-63a3f74532632a7e07b71f805eb806b05b3f19e3.zip |
*** empty log message ***
Diffstat (limited to 'src/raw.c')
-rw-r--r-- | src/raw.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; } |