summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2017-03-16 08:26:07 +0100
committerMarcus Meissner <marcus@jet.franken.de>2017-03-16 08:26:07 +0100
commit3f44e0c4cb33dfe0ce733a95323a1df5d3968a9a (patch)
tree71bc02099c5d0b2223c7a7aa56caa78388f2e7f5
parent98162b3d6207ce9ddadc1a2df75ef4b8e1c0cfb3 (diff)
downloadlibgphoto2-3f44e0c4cb33dfe0ce733a95323a1df5d3968a9a.tar.gz
debugging
-rw-r--r--camlibs/pentax/pslr_model.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camlibs/pentax/pslr_model.c b/camlibs/pentax/pslr_model.c
index 1acff046b..c96012978 100644
--- a/camlibs/pentax/pslr_model.c
+++ b/camlibs/pentax/pslr_model.c
@@ -722,10 +722,10 @@ ipslr_model_info_t *find_model_by_id( uint32_t id ) {
int i;
for ( i = 0; i<sizeof (camera_models) / sizeof (camera_models[0]); i++) {
if ( camera_models[i].id == id ) {
- // DPRINT("found %d\n",i);
+ DPRINT("found %d\n",i);
return &camera_models[i];
}
}
- // DPRINT("not found\n");
+ DPRINT("not found\n");
return NULL;
}