Make enum in src,tests and examples C90 compliant by removing trailing comma.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
diff --git a/examples/add.c b/examples/add.c
index 4ff7c79..1c93b11 100644
--- a/examples/add.c
+++ b/examples/add.c
@@ -28,7 +28,7 @@
enum index_mode {
INDEX_NONE,
- INDEX_ADD,
+ INDEX_ADD
};
struct index_options {
diff --git a/examples/remote.c b/examples/remote.c
index 57f758c..14fac03 100644
--- a/examples/remote.c
+++ b/examples/remote.c
@@ -27,7 +27,7 @@ enum subcmd {
subcmd_remove,
subcmd_rename,
subcmd_seturl,
- subcmd_show,
+ subcmd_show
};
struct remote_opts {
diff --git a/examples/status.c b/examples/status.c
index 8cf9221..e659efb 100644
--- a/examples/status.c
+++ b/examples/status.c
@@ -38,7 +38,7 @@ enum {
FORMAT_DEFAULT = 0,
FORMAT_LONG = 1,
FORMAT_SHORT = 2,
- FORMAT_PORCELAIN = 3,
+ FORMAT_PORCELAIN = 3
};
#define MAX_PATHSPEC 8
diff --git a/src/annotated_commit.h b/src/annotated_commit.h
index b390066..444a2ed 100644
--- a/src/annotated_commit.h
+++ b/src/annotated_commit.h
@@ -15,7 +15,7 @@
typedef enum {
GIT_ANNOTATED_COMMIT_REAL = 1,
- GIT_ANNOTATED_COMMIT_VIRTUAL = 2,
+ GIT_ANNOTATED_COMMIT_VIRTUAL = 2
} git_annotated_commit_t;
/**
diff --git a/src/checkout.c b/src/checkout.c
index 5733f4a..11be2e8 100644
--- a/src/checkout.c
+++ b/src/checkout.c
@@ -45,7 +45,7 @@ enum {
CHECKOUT_ACTION__UPDATE_CONFLICT = 32,
CHECKOUT_ACTION__MAX = 32,
CHECKOUT_ACTION__REMOVE_AND_UPDATE =
- (CHECKOUT_ACTION__UPDATE_BLOB | CHECKOUT_ACTION__REMOVE),
+ (CHECKOUT_ACTION__UPDATE_BLOB | CHECKOUT_ACTION__REMOVE)
};
typedef struct {
diff --git a/src/commit.h b/src/commit.h
index 9378eab..7a2454e 100644
--- a/src/commit.h
+++ b/src/commit.h
@@ -61,7 +61,7 @@ int git_commit__parse(void *commit, git_odb_object *obj);
int git_commit__parse_raw(void *commit, const char *data, size_t size);
typedef enum {
- GIT_COMMIT_PARSE_QUICK = (1 << 0), /**< Only parse parents and committer info */
+ GIT_COMMIT_PARSE_QUICK = (1 << 0) /**< Only parse parents and committer info */
} git_commit__parse_flags;
int git_commit__parse_ext(git_commit *commit, git_odb_object *odb_obj, unsigned int flags);
diff --git a/src/commit_graph.c b/src/commit_graph.c
index f9a4bd2..924a399 100644
--- a/src/commit_graph.c
+++ b/src/commit_graph.c
@@ -754,7 +754,7 @@ enum generation_number_commit_state {
GENERATION_NUMBER_COMMIT_STATE_UNVISITED = 0,
GENERATION_NUMBER_COMMIT_STATE_ADDED = 1,
GENERATION_NUMBER_COMMIT_STATE_EXPANDED = 2,
- GENERATION_NUMBER_COMMIT_STATE_VISITED = 3,
+ GENERATION_NUMBER_COMMIT_STATE_VISITED = 3
};
static int compute_generation_numbers(git_vector *commits)
diff --git a/src/crlf.c b/src/crlf.c
index 7895dde..1e1f1e8 100644
--- a/src/crlf.c
+++ b/src/crlf.c
@@ -26,7 +26,7 @@ typedef enum {
GIT_CRLF_TEXT_CRLF,
GIT_CRLF_AUTO,
GIT_CRLF_AUTO_INPUT,
- GIT_CRLF_AUTO_CRLF,
+ GIT_CRLF_AUTO_CRLF
} git_crlf_t;
struct crlf_attrs {
diff --git a/src/diff.h b/src/diff.h
index 4b03398..2cc35e6 100644
--- a/src/diff.h
+++ b/src/diff.h
@@ -26,7 +26,7 @@
typedef enum {
GIT_DIFF_TYPE_UNKNOWN = 0,
GIT_DIFF_TYPE_GENERATED = 1,
- GIT_DIFF_TYPE_PARSED = 2,
+ GIT_DIFF_TYPE_PARSED = 2
} git_diff_origin_t;
struct git_diff {
diff --git a/src/diff_driver.c b/src/diff_driver.c
index f6b51d8..a20723f 100644
--- a/src/diff_driver.c
+++ b/src/diff_driver.c
@@ -21,7 +21,7 @@ typedef enum {
DIFF_DRIVER_AUTO = 0,
DIFF_DRIVER_BINARY = 1,
DIFF_DRIVER_TEXT = 2,
- DIFF_DRIVER_PATTERNLIST = 3,
+ DIFF_DRIVER_PATTERNLIST = 3
} git_diff_driver_t;
typedef struct {
diff --git a/src/diff_generate.h b/src/diff_generate.h
index 5186d55..f39bf6b 100644
--- a/src/diff_generate.h
+++ b/src/diff_generate.h
@@ -18,7 +18,7 @@ enum {
GIT_DIFFCAPS_IGNORE_STAT = (1 << 1), /* use stat? */
GIT_DIFFCAPS_TRUST_MODE_BITS = (1 << 2), /* use st_mode? */
GIT_DIFFCAPS_TRUST_CTIME = (1 << 3), /* use st_ctime? */
- GIT_DIFFCAPS_USE_DEV = (1 << 4), /* use st_dev? */
+ GIT_DIFFCAPS_USE_DEV = (1 << 4) /* use st_dev? */
};
#define DIFF_FLAGS_KNOWN_BINARY (GIT_DIFF_FLAG_BINARY|GIT_DIFF_FLAG_NOT_BINARY)
@@ -36,7 +36,7 @@ enum {
GIT_DIFF_FLAG__TO_SPLIT = (1 << 17), /* split entry during rename det. */
GIT_DIFF_FLAG__IS_RENAME_TARGET = (1 << 18),
GIT_DIFF_FLAG__IS_RENAME_SOURCE = (1 << 19),
- GIT_DIFF_FLAG__HAS_SELF_SIMILARITY = (1 << 20),
+ GIT_DIFF_FLAG__HAS_SELF_SIMILARITY = (1 << 20)
};
#define GIT_DIFF_FLAG__CLEAR_INTERNAL(F) (F) = ((F) & 0x00FFFF)
diff --git a/src/futils.h b/src/futils.h
index 22098ad..1386dc4 100644
--- a/src/futils.h
+++ b/src/futils.h
@@ -96,7 +96,7 @@ typedef enum {
GIT_MKDIR_SKIP_LAST2 = 32,
GIT_MKDIR_VERIFY_DIR = 64,
GIT_MKDIR_REMOVE_FILES = 128,
- GIT_MKDIR_REMOVE_SYMLINKS = 256,
+ GIT_MKDIR_REMOVE_SYMLINKS = 256
} git_futils_mkdir_flags;
struct git_futils_mkdir_perfdata
@@ -159,7 +159,7 @@ typedef enum {
GIT_RMDIR_SKIP_NONEMPTY = (1 << 1),
GIT_RMDIR_EMPTY_PARENTS = (1 << 2),
GIT_RMDIR_REMOVE_BLOCKERS = (1 << 3),
- GIT_RMDIR_SKIP_ROOT = (1 << 4),
+ GIT_RMDIR_SKIP_ROOT = (1 << 4)
} git_futils_rmdir_flags;
/**
@@ -224,7 +224,7 @@ typedef enum {
GIT_CPDIR_OVERWRITE = (1u << 3),
GIT_CPDIR_CHMOD_DIRS = (1u << 4),
GIT_CPDIR_SIMPLE_TO_MODE = (1u << 5),
- GIT_CPDIR_LINK_FILES = (1u << 6),
+ GIT_CPDIR_LINK_FILES = (1u << 6)
} git_futils_cpdir_flags;
/**
diff --git a/src/ignore.h b/src/ignore.h
index 7991952..aa5ca62 100644
--- a/src/ignore.h
+++ b/src/ignore.h
@@ -48,7 +48,7 @@ enum {
GIT_IGNORE_UNCHECKED = -2,
GIT_IGNORE_NOTFOUND = -1,
GIT_IGNORE_FALSE = 0,
- GIT_IGNORE_TRUE = 1,
+ GIT_IGNORE_TRUE = 1
};
extern int git_ignore__lookup(int *out, git_ignores *ign, const char *path, git_dir_flag dir_flag);
diff --git a/src/index.c b/src/index.c
index bd6ea8f..7ade434 100644
--- a/src/index.c
+++ b/src/index.c
@@ -3386,7 +3386,7 @@ enum {
INDEX_ACTION_NONE = 0,
INDEX_ACTION_UPDATE = 1,
INDEX_ACTION_REMOVE = 2,
- INDEX_ACTION_ADDALL = 3,
+ INDEX_ACTION_ADDALL = 3
};
int git_index_add_all(
diff --git a/src/iterator.c b/src/iterator.c
index a4337bb..15bb63d 100644
--- a/src/iterator.c
+++ b/src/iterator.c
@@ -293,7 +293,7 @@ typedef enum {
ITERATOR_PATHLIST_IS_FILE = 1,
ITERATOR_PATHLIST_IS_DIR = 2,
ITERATOR_PATHLIST_IS_PARENT = 3,
- ITERATOR_PATHLIST_FULL = 4,
+ ITERATOR_PATHLIST_FULL = 4
} iterator_pathlist_search_t;
static iterator_pathlist_search_t iterator_pathlist_search(
diff --git a/src/iterator.h b/src/iterator.h
index e55c104..6bb8489 100644
--- a/src/iterator.h
+++ b/src/iterator.h
@@ -21,7 +21,7 @@ typedef enum {
GIT_ITERATOR_TREE = 1,
GIT_ITERATOR_INDEX = 2,
GIT_ITERATOR_WORKDIR = 3,
- GIT_ITERATOR_FS = 4,
+ GIT_ITERATOR_FS = 4
} git_iterator_t;
typedef enum {
@@ -42,7 +42,7 @@ typedef enum {
/** descend into symlinked directories */
GIT_ITERATOR_DESCEND_SYMLINKS = (1u << 7),
/** hash files in workdir or filesystem iterators */
- GIT_ITERATOR_INCLUDE_HASH = (1u << 8),
+ GIT_ITERATOR_INCLUDE_HASH = (1u << 8)
} git_iterator_flag_t;
typedef enum {
diff --git a/src/merge.h b/src/merge.h
index 3e7f80c..632f2d8 100644
--- a/src/merge.h
+++ b/src/merge.h
@@ -29,12 +29,12 @@
/** Internal merge flags. */
enum {
/** The merge is for a virtual base in a recursive merge. */
- GIT_MERGE__VIRTUAL_BASE = (1 << 31),
+ GIT_MERGE__VIRTUAL_BASE = (1 << 31)
};
enum {
/** Accept the conflict file, staging it as the merge result. */
- GIT_MERGE_FILE_FAVOR__CONFLICTED = 4,
+ GIT_MERGE_FILE_FAVOR__CONFLICTED = 4
};
@@ -83,7 +83,7 @@ typedef enum {
GIT_MERGE_DIFF_DIRECTORY_FILE = (1 << 10),
/* The child of a folder that is in a directory/file conflict. */
- GIT_MERGE_DIFF_DF_CHILD = (1 << 11),
+ GIT_MERGE_DIFF_DF_CHILD = (1 << 11)
} git_merge_diff_t;
typedef struct {
diff --git a/src/netops.h b/src/netops.h
index 7140b39..56f9685 100644
--- a/src/netops.h
+++ b/src/netops.h
@@ -42,7 +42,7 @@ typedef struct gitno_buffer {
/* Flags to gitno_connect */
enum {
/* Attempt to create an SSL connection. */
- GITNO_CONNECT_SSL = 1,
+ GITNO_CONNECT_SSL = 1
};
/**
diff --git a/src/odb.h b/src/odb.h
index 4a8ebff..5aa4cc8 100644
--- a/src/odb.h
+++ b/src/odb.h
@@ -53,7 +53,7 @@ struct git_odb {
};
typedef enum {
- GIT_ODB_CAP_FROM_OWNER = -1,
+ GIT_ODB_CAP_FROM_OWNER = -1
} git_odb_cap_t;
/*
diff --git a/src/patch_generate.h b/src/patch_generate.h
index 20f78cb..0e09d27 100644
--- a/src/patch_generate.h
+++ b/src/patch_generate.h
@@ -21,7 +21,7 @@ enum {
GIT_PATCH_GENERATED_DIFFABLE = (1 << 3),
/* the difference between the two sides has been computed */
GIT_PATCH_GENERATED_DIFFED = (1 << 4),
- GIT_PATCH_GENERATED_FLATTENED = (1 << 5),
+ GIT_PATCH_GENERATED_FLATTENED = (1 << 5)
};
struct git_patch_generated {
diff --git a/src/patch_parse.c b/src/patch_parse.c
index 891cf79..37822fc 100644
--- a/src/patch_parse.c
+++ b/src/patch_parse.c
@@ -382,7 +382,7 @@ typedef enum {
STATE_RENAME,
STATE_COPY,
- STATE_END,
+ STATE_END
} parse_header_state;
typedef struct {
diff --git a/src/pathspec.h b/src/pathspec.h
index bfdcd48..0256cb9 100644
--- a/src/pathspec.h
+++ b/src/pathspec.h
@@ -25,7 +25,7 @@ struct git_pathspec {
enum {
PATHSPEC_DATATYPE_STRINGS = 0,
- PATHSPEC_DATATYPE_DIFF = 1,
+ PATHSPEC_DATATYPE_DIFF = 1
};
typedef git_array_t(char *) git_pathspec_string_array_t;
diff --git a/src/pqueue.h b/src/pqueue.h
index c0a6cd4..4db74ea 100644
--- a/src/pqueue.h
+++ b/src/pqueue.h
@@ -15,7 +15,7 @@ typedef git_vector git_pqueue;
enum {
/* flag meaning: don't grow heap, keep highest values only */
- GIT_PQUEUE_FIXED_SIZE = (GIT_VECTOR_FLAG_MAX << 1),
+ GIT_PQUEUE_FIXED_SIZE = (GIT_VECTOR_FLAG_MAX << 1)
};
/**
diff --git a/src/rebase.c b/src/rebase.c
index 26b03b3..4ad3764 100644
--- a/src/rebase.c
+++ b/src/rebase.c
@@ -53,7 +53,7 @@ typedef enum {
GIT_REBASE_NONE = 0,
GIT_REBASE_APPLY = 1,
GIT_REBASE_MERGE = 2,
- GIT_REBASE_INTERACTIVE = 3,
+ GIT_REBASE_INTERACTIVE = 3
} git_rebase_t;
struct git_rebase {
diff --git a/src/refdb_fs.c b/src/refdb_fs.c
index 097d2b3..055ca25 100644
--- a/src/refdb_fs.c
+++ b/src/refdb_fs.c
@@ -35,7 +35,7 @@ enum {
PACKREF_HAS_PEEL = 1,
PACKREF_WAS_LOOSE = 2,
PACKREF_CANNOT_PEEL = 4,
- PACKREF_SHADOWED = 8,
+ PACKREF_SHADOWED = 8
};
enum {
diff --git a/src/repository.h b/src/repository.h
index 1ea5a44..3c3aa1e 100644
--- a/src/repository.h
+++ b/src/repository.h
@@ -118,14 +118,14 @@ typedef enum {
/* core.fsyncObjectFiles */
GIT_FSYNCOBJECTFILES_DEFAULT = GIT_CONFIGMAP_FALSE,
/* core.longpaths */
- GIT_LONGPATHS_DEFAULT = GIT_CONFIGMAP_FALSE,
+ GIT_LONGPATHS_DEFAULT = GIT_CONFIGMAP_FALSE
} git_configmap_value;
/* internal repository init flags */
enum {
GIT_REPOSITORY_INIT__HAS_DOTGIT = (1u << 16),
GIT_REPOSITORY_INIT__NATURAL_WD = (1u << 17),
- GIT_REPOSITORY_INIT__IS_REINIT = (1u << 18),
+ GIT_REPOSITORY_INIT__IS_REINIT = (1u << 18)
};
/** Internal structure for repository object */
diff --git a/src/submodule.c b/src/submodule.c
index 0370ac8..0f4f072 100644
--- a/src/submodule.c
+++ b/src/submodule.c
@@ -61,7 +61,7 @@ enum {
};
enum {
GITMODULES_EXISTING = 0,
- GITMODULES_CREATE = 1,
+ GITMODULES_CREATE = 1
};
static int submodule_alloc(git_submodule **out, git_repository *repo, const char *name);
diff --git a/src/submodule.h b/src/submodule.h
index b01ff68..7fa9824 100644
--- a/src/submodule.h
+++ b/src/submodule.h
@@ -110,7 +110,7 @@ enum {
GIT_SUBMODULE_STATUS__HEAD_NOT_SUBMODULE = (1u << 24),
GIT_SUBMODULE_STATUS__INDEX_NOT_SUBMODULE = (1u << 25),
GIT_SUBMODULE_STATUS__WD_NOT_SUBMODULE = (1u << 26),
- GIT_SUBMODULE_STATUS__INDEX_MULTIPLE_ENTRIES = (1u << 27),
+ GIT_SUBMODULE_STATUS__INDEX_MULTIPLE_ENTRIES = (1u << 27)
};
#define GIT_SUBMODULE_STATUS__CLEAR_INTERNAL(S) \
diff --git a/src/sysdir.h b/src/sysdir.h
index d12bac9..43392a0 100644
--- a/src/sysdir.h
+++ b/src/sysdir.h
@@ -74,7 +74,7 @@ typedef enum {
GIT_SYSDIR_XDG = 2,
GIT_SYSDIR_PROGRAMDATA = 3,
GIT_SYSDIR_TEMPLATE = 4,
- GIT_SYSDIR__MAX = 5,
+ GIT_SYSDIR__MAX = 5
} git_sysdir_t;
/**
diff --git a/src/trailer.c b/src/trailer.c
index 61cdd1b..4761c99 100644
--- a/src/trailer.c
+++ b/src/trailer.c
@@ -286,7 +286,7 @@ enum trailer_state {
S_VALUE = 4,
S_VALUE_NL = 5,
S_VALUE_END = 6,
- S_IGNORE = 7,
+ S_IGNORE = 7
};
#define NEXT(st) { state = (st); ptr++; continue; }
diff --git a/src/transaction.c b/src/transaction.c
index 98fa1ba..ccffa99 100644
--- a/src/transaction.c
+++ b/src/transaction.c
@@ -23,7 +23,7 @@
typedef enum {
TRANSACTION_NONE,
TRANSACTION_REFS,
- TRANSACTION_CONFIG,
+ TRANSACTION_CONFIG
} transaction_t;
typedef struct {
diff --git a/src/transports/auth.h b/src/transports/auth.h
index 824d719..64680cc 100644
--- a/src/transports/auth.h
+++ b/src/transports/auth.h
@@ -15,7 +15,7 @@
typedef enum {
GIT_HTTP_AUTH_BASIC = 1,
GIT_HTTP_AUTH_NEGOTIATE = 2,
- GIT_HTTP_AUTH_NTLM = 4,
+ GIT_HTTP_AUTH_NTLM = 4
} git_http_auth_t;
typedef struct git_http_auth_context git_http_auth_context;
diff --git a/src/transports/smart.h b/src/transports/smart.h
index 225e649..a9cab31 100644
--- a/src/transports/smart.h
+++ b/src/transports/smart.h
@@ -46,7 +46,7 @@ typedef enum {
GIT_PKT_PROGRESS,
GIT_PKT_OK,
GIT_PKT_NG,
- GIT_PKT_UNPACK,
+ GIT_PKT_UNPACK
} git_pkt_type;
/* Used for multi_ack and multi_ack_detailed */
diff --git a/src/transports/winhttp.c b/src/transports/winhttp.c
index efbaf02..60f536f 100644
--- a/src/transports/winhttp.c
+++ b/src/transports/winhttp.c
@@ -99,7 +99,7 @@ typedef enum {
GIT_WINHTTP_AUTH_BASIC = 1,
GIT_WINHTTP_AUTH_NTLM = 2,
GIT_WINHTTP_AUTH_NEGOTIATE = 4,
- GIT_WINHTTP_AUTH_DIGEST = 8,
+ GIT_WINHTTP_AUTH_DIGEST = 8
} winhttp_authmechanism_t;
typedef struct {
diff --git a/src/vector.h b/src/vector.h
index 3dcec3d..ae3c79a 100644
--- a/src/vector.h
+++ b/src/vector.h
@@ -13,7 +13,7 @@ typedef int (*git_vector_cmp)(const void *, const void *);
enum {
GIT_VECTOR_SORTED = (1u << 0),
- GIT_VECTOR_FLAG_MAX = (1u << 1),
+ GIT_VECTOR_FLAG_MAX = (1u << 1)
};
typedef struct git_vector {
diff --git a/src/zstream.h b/src/zstream.h
index 3a59d9a..3f8b1c7 100644
--- a/src/zstream.h
+++ b/src/zstream.h
@@ -15,7 +15,7 @@
typedef enum {
GIT_ZSTREAM_INFLATE,
- GIT_ZSTREAM_DEFLATE,
+ GIT_ZSTREAM_DEFLATE
} git_zstream_t;
typedef struct {
diff --git a/tests/clar.h b/tests/clar.h
index 8c22382..3f659c2 100644
--- a/tests/clar.h
+++ b/tests/clar.h
@@ -13,12 +13,12 @@ enum cl_test_status {
CL_TEST_OK,
CL_TEST_FAILURE,
CL_TEST_SKIP,
- CL_TEST_NOTRUN,
+ CL_TEST_NOTRUN
};
enum cl_output_format {
CL_OUTPUT_CLAP,
- CL_OUTPUT_TAP,
+ CL_OUTPUT_TAP
};
/** Setup clar environment */
@@ -60,7 +60,7 @@ typedef enum cl_trace_event {
CL_TRACE__TEST__END,
CL_TRACE__TEST__RUN_BEGIN,
CL_TRACE__TEST__RUN_END,
- CL_TRACE__TEST__LONGJMP,
+ CL_TRACE__TEST__LONGJMP
} cl_trace_event;
typedef void (cl_trace_cb)(