summaryrefslogtreecommitdiff
path: root/libgphoto2_port/gphoto2
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2010-03-20 22:29:41 +0000
committerMarcus Meissner <marcus@jet.franken.de>2010-03-20 22:29:41 +0000
commit79415cd713f3a5af6cc37a936bf8e72d7cacaaa8 (patch)
treea44e166e3d19ce10be3b3f7ac3e35e73953c0a5f /libgphoto2_port/gphoto2
parent89f0cae960a5310f50244e0b323b4dce7e99c7ea (diff)
downloadlibgphoto2-79415cd713f3a5af6cc37a936bf8e72d7cacaaa8.tar.gz
removed a ; at end of a enum, confuses C++ compiler.
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@12812 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'libgphoto2_port/gphoto2')
-rw-r--r--libgphoto2_port/gphoto2/gphoto2-port-info-list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgphoto2_port/gphoto2/gphoto2-port-info-list.h b/libgphoto2_port/gphoto2/gphoto2-port-info-list.h
index 498474463..74db99154 100644
--- a/libgphoto2_port/gphoto2/gphoto2-port-info-list.h
+++ b/libgphoto2_port/gphoto2/gphoto2-port-info-list.h
@@ -37,7 +37,7 @@ typedef enum {
GP_PORT_USB = 1 << 2, /**< \brief USB port. */
GP_PORT_DISK = 1 << 3, /**< \brief Disk / local mountpoint port. */
GP_PORT_PTPIP = 1 << 4, /**< \brief PTP/IP port. */
- GP_PORT_USB_DISK_DIRECT = 1 << 5, /**< \brief Direct IO to an usb mass storage device. */
+ GP_PORT_USB_DISK_DIRECT = 1 << 5 /**< \brief Direct IO to an usb mass storage device. */
} GPPortType;
/**