diff options
author | Nikias Bassen | 2009-08-03 18:51:10 +0200 |
---|---|---|
committer | Nikias Bassen | 2009-08-03 18:51:10 +0200 |
commit | 50c536e4b97f0eb5e4991b97d86564ed2f1d0ebe (patch) | |
tree | 202e66eb93175ecd3ff685ec03ad6a18f3f57c2a /src/usbmux.c | |
parent | 843db538ed4b75d0d5943f0df5ba7ab1ce4e65f9 (diff) | |
download | usbmuxd-50c536e4b97f0eb5e4991b97d86564ed2f1d0ebe.tar.gz usbmuxd-50c536e4b97f0eb5e4991b97d86564ed2f1d0ebe.tar.bz2 |
Revert "Added missing __func__ to printf"
This reverts commit 843db538ed4b75d0d5943f0df5ba7ab1ce4e65f9.
Diffstat (limited to 'src/usbmux.c')
-rw-r--r-- | src/usbmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usbmux.c b/src/usbmux.c index a695f27..37538da 100644 --- a/src/usbmux.c +++ b/src/usbmux.c @@ -854,7 +854,7 @@ int usbmux_send(usbmux_client_t client, const char *data, uint32_t datalen, int cutoff = 28; // HACK: we need to split up the packet because of an unresolved // usb communication issue aka 'N*128 problem' or 'N*512 problem' - log_debug_msg("%s: HACK: splitting packet, two send_to_device calls will follow\n", __func__); + log_debug_msg("%s: HACK: splitting packet, two send_to_device calls will follow\n"); packetsize = blocksize - cutoff; curlen = datalen - cutoff; client->header->length = packetsize; |