summaryrefslogtreecommitdiffstats
path: root/mtp/mtp_MtpServer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mtp/mtp_MtpServer.cpp')
-rwxr-xr-xmtp/mtp_MtpServer.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/mtp/mtp_MtpServer.cpp b/mtp/mtp_MtpServer.cpp
index af80f6826..9df564ffc 100755
--- a/mtp/mtp_MtpServer.cpp
+++ b/mtp/mtp_MtpServer.cpp
@@ -47,11 +47,13 @@ void twmtp_MtpServer::set_storages(storages* mtpstorages) {
int twmtp_MtpServer::setup()
{
- #define USB_MTP_DEVICE "/dev/mtp_usb"
usePtp = false;
MyMtpDatabase* mtpdb = new MyMtpDatabase();
#ifdef USB_MTP_DEVICE
- int fd = open(USB_MTP_DEVICE, O_RDWR);
+#define STRINGIFY(x) #x
+#define EXPAND(x) STRINGIFY(x)
+ MTPI("Using '%s' for MTP device.\n", EXPAND(USB_MTP_DEVICE));
+ int fd = open(EXPAND(USB_MTP_DEVICE), O_RDWR);
#else
int fd = open("/dev/mtp_usb", O_RDWR);
#endif