summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2019-07-10 08:18:14 +0200
committerMarcus Meissner <marcus@jet.franken.de>2019-07-10 08:18:14 +0200
commit9af89b9f54aed7108759c92845c1932e108a382a (patch)
tree61753c5bde539d0df0b0fcb4e770833f96d0488e
parent9864bf95e880f2d72b706b2c8ab9197ba8641c6b (diff)
downloadlibgphoto2-9af89b9f54aed7108759c92845c1932e108a382a.tar.gz
fixed shutterspeed setting command
-rw-r--r--camlibs/lumix/lumix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camlibs/lumix/lumix.c b/camlibs/lumix/lumix.c
index a1cccf950..a651c5057 100644
--- a/camlibs/lumix/lumix.c
+++ b/camlibs/lumix/lumix.c
@@ -594,7 +594,7 @@ Get_CurMenu(Camera *camera) {
static void Set_ShutterSpeed(Camera *camera,const char* SpeedValue) {
char buf[200];
- sprintf(buf, "?mode=setsetting&type=shtrspeed&value=%s",SpeedValue);
+ sprintf(buf, "cam.cgi?mode=setsetting&type=shtrspeed&value=%s",SpeedValue);
loadCmd(camera,buf);
}