summaryrefslogtreecommitdiff
path: root/camlibs/pccam600
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2007-08-11 13:47:53 +0000
committerMarcus Meissner <marcus@jet.franken.de>2007-08-11 13:47:53 +0000
commitb5ab6aa897167bd8f4cf38e3250e617d0ce42766 (patch)
tree08b4d30e0c59a6e7d9e47891734a4f7ead950218 /camlibs/pccam600
parenta9e577cf46b17b2f4fc2fbd4c50403f6a0f031a3 (diff)
downloadlibgphoto2-b5ab6aa897167bd8f4cf38e3250e617d0ce42766.tar.gz
removed 1 unnecessary function. fixed string a bit.
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@10564 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'camlibs/pccam600')
-rw-r--r--camlibs/pccam600/library.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/camlibs/pccam600/library.c b/camlibs/pccam600/library.c
index 8b16bd393..6a30adbe1 100644
--- a/camlibs/pccam600/library.c
+++ b/camlibs/pccam600/library.c
@@ -251,14 +251,7 @@ static int camera_summary(Camera *camera, CameraText *summary, GPContext *contex
static int camera_about(Camera *camera, CameraText *about, GPContext *context)
{
strcpy(about->text,
- _("Creative PC-CAM600\n Author: Peter Kajberg\n email: <pbk@odense.kollegienet.dk>\n"));
- return GP_OK;
-}
-static int
-get_info_func (CameraFilesystem *fs, const char *folder, const char *filename,
- CameraFileInfo *info, void *data, GPContext *context)
-{
-
+ _("Creative PC-CAM600\nAuthor: Peter Kajberg <pbk@odense.kollegienet.dk>\n"));
return GP_OK;
}
@@ -274,7 +267,6 @@ static int delete_file_func(CameraFilesystem *fs, const char *folder,
}
static CameraFilesystemFuncs fsfuncs = {
- .get_info_func = get_info_func,
.get_file_func = get_file_func,
.file_list_func = file_list_func,
.del_file_func = delete_file_func,