summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjy910.yun <jy910.yun@samsung.com>2013-02-27 14:31:35 +0900
committerjy910.yun <jy910.yun@samsung.com>2013-02-27 16:19:13 +0900
commitf3c772c71e8225999ea442c7c945d63a1b220ede (patch)
tree910447d032268e539d14c0a97fb3f6b02c908912 /src
parent488685d60544565d38f106a369c8b19abc2414ca (diff)
downloadlibdevice-node-f3c772c71e8225999ea442c7c945d63a1b220ede.tar.gz
libdevice-node-f3c772c71e8225999ea442c7c945d63a1b220ede.tar.bz2
libdevice-node-f3c772c71e8225999ea442c7c945d63a1b220ede.zip
restore to add devman_plugin.pc file.submit/trunk/20130304.020433
Change-Id: I8fb76484a4f51fdfcc9625cc0ecb411d9a64d9be
Diffstat (limited to 'src')
-rw-r--r--src/device-node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device-node.c b/src/device-node.c
index b567a65..4612778 100644
--- a/src/device-node.c
+++ b/src/device-node.c
@@ -87,7 +87,7 @@ API int device_get_property(enum device_type devtype, int property, int *value)
errno = ENODEV;
return -1;
} else if (r == -1) {
- DEVERR("get_prop of %s return failes", dev->name);
+ DEVERR("get_prop of %s(%d) return failes", dev->name, property);
errno = EPERM;
return -1;
}
@@ -128,7 +128,7 @@ API int device_set_property(enum device_type devtype, int property, int value)
errno = ENODEV;
return -1;
} else if (r == -1) {
- DEVERR("set_prop of %s return failes", dev->name);
+ DEVERR("set_prop of %s(%d) return failes", dev->name, property);
errno = EPERM;
return -1;
}