summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2017-04-08 15:09:14 +0200
committerMarcus Meissner <marcus@jet.franken.de>2017-04-08 15:09:14 +0200
commit11bcec4f8a8d1b5135c14b0272c03729fb89581b (patch)
tree8e6809eba89c17693a85574da4a1fbbb0e132520
parent06f2f8198fdf40750e66b6948253ee7a6df48e18 (diff)
downloadlibgphoto2-11bcec4f8a8d1b5135c14b0272c03729fb89581b.tar.gz
do not print the hexdump to stdout
-rw-r--r--camlibs/pentax/pslr_model.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camlibs/pentax/pslr_model.c b/camlibs/pentax/pslr_model.c
index 0c1fabbf5..4cadbb89c 100644
--- a/camlibs/pentax/pslr_model.c
+++ b/camlibs/pentax/pslr_model.c
@@ -140,7 +140,7 @@ char *shexdump(uint8_t *buf, uint32_t bufLen) {
void hexdump(uint8_t *buf, uint32_t bufLen) {
char *dmp = shexdump(buf, bufLen);
- printf("%s",dmp);
+ DPRINT("%s",dmp);
free(dmp);
}