diff options
author | Marcus Meissner <marcus@jet.franken.de> | 2007-08-11 13:49:25 +0000 |
---|---|---|
committer | Marcus Meissner <marcus@jet.franken.de> | 2007-08-11 13:49:25 +0000 |
commit | ff1d62f2db146675edc195646e789bdae23f20fd (patch) | |
tree | 4a26bd873a77af900635bb42d8d0edffae5be6c5 /camlibs/pccam600/pccam600.c | |
parent | b5ab6aa897167bd8f4cf38e3250e617d0ce42766 (diff) | |
download | libgphoto2-ff1d62f2db146675edc195646e789bdae23f20fd.tar.gz |
updated string
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@10565 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'camlibs/pccam600/pccam600.c')
-rw-r--r-- | camlibs/pccam600/pccam600.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/camlibs/pccam600/pccam600.c b/camlibs/pccam600/pccam600.c index a5690462d..56bd5a5f2 100644 --- a/camlibs/pccam600/pccam600.c +++ b/camlibs/pccam600/pccam600.c @@ -125,7 +125,7 @@ int pccam600_get_file_list(GPPort *port, GPContext *context){ if (nr_of_blocks == 0){ gp_log(GP_LOG_DEBUG,"pccam600 library: pccam600_get_file_list", "nr_of_blocks is 0"); - gp_context_error(context,_("pccam600_init:Expected > %d blocks got %d"), + gp_context_error(context,_("pccam600_init: Expected > %d blocks got %d"), 0,nr_of_blocks); return GP_ERROR; } @@ -154,7 +154,7 @@ int pccam600_get_file(GPPort *port, GPContext *context, int index){ if (nr_of_blocks == 0){ gp_log(GP_LOG_DEBUG, "pccam600 library: pccam600_get_file","nr_of_msg is 0"); - gp_context_error(context,_("pccam600_init:Expected > %d blocks got %d"), + gp_context_error(context,_("pccam600_init: Expected > %d blocks got %d"), 0,nr_of_blocks); return GP_ERROR; } @@ -180,7 +180,7 @@ int pccam600_close(GPPort *port, GPContext *context){ ret = gp_port_usb_msg_write(port,0x08,0x00,0xf0,NULL,0x00); if (ret < 0) { gp_context_error(context, - _("pccam600_close:return value was %d instead of %d"), + _("pccam600_close: return value was %d instead of %d"), ret,0); return GP_ERROR; } @@ -214,7 +214,7 @@ int pccam600_init(GPPort *port, GPContext *context){ nr_of_blocks = 512 / nr_of_blocks; gp_log(GP_LOG_DEBUG,"pccam600 library: init","nr_of_blocks %d",nr_of_blocks); if (nr_of_blocks == 0){ - gp_context_error(context,_("pccam600_init:Expected %d blocks got %d"), + gp_context_error(context,_("pccam600_init: Expected %d blocks got %d"), 64,nr_of_blocks); return GP_ERROR; } @@ -226,7 +226,7 @@ int pccam600_init(GPPort *port, GPContext *context){ "pccam600 library: init"," gp_port_read returned %d:", ret); gp_context_error(context,_("pccam600 init:" - "Unexpected error: gp_port_read returned %d instead of %d"), + " Unexpected error: gp_port_read returned %d instead of %d"), ret,0); return GP_ERROR; } |