diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-26 16:01:40 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-28 15:50:51 +0200 |
commit | 8dfbf195c1e7a8d25f1250e913be283ac3269bb2 (patch) | |
tree | 29677a05910894097282472a52ec04ceae4ee016 /src | |
parent | 68421638f5c700cad8ae9fe105b94ea8e3733841 (diff) |
port: skip LAST enums in glib-mkenums processing
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-port.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-port.h b/src/mm-port.h index 084dceab..847e5a4c 100644 --- a/src/mm-port.h +++ b/src/mm-port.h @@ -24,7 +24,7 @@ typedef enum { /*< underscore_name=mm_port_subsys >*/ MM_PORT_SUBSYS_TTY, MM_PORT_SUBSYS_NET, - MM_PORT_SUBSYS_LAST = MM_PORT_SUBSYS_NET + MM_PORT_SUBSYS_LAST = MM_PORT_SUBSYS_NET /*< skip >*/ } MMPortSubsys; typedef enum { /*< underscore_name=mm_port_type >*/ @@ -33,7 +33,7 @@ typedef enum { /*< underscore_name=mm_port_type >*/ MM_PORT_TYPE_AT, MM_PORT_TYPE_QCDM, - MM_PORT_TYPE_LAST = MM_PORT_TYPE_QCDM + MM_PORT_TYPE_LAST = MM_PORT_TYPE_QCDM /*< skip >*/ } MMPortType; #define MM_TYPE_PORT (mm_port_get_type ()) |