We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a8c88 commit b565d13Copy full SHA for b565d13
1 file changed
include/libmtdac/mtd.h
@@ -376,19 +376,19 @@ enum mtd_scope {
376
};
377
378
enum mtd_ep_api {
379
- MTD_EP_API_ITSA = 0,
380
- MTD_EP_API_VAT = 1,
+ MTD_EP_API_ITSA = 0x0,
+ MTD_EP_API_VAT = 0x1,
381
382
/*
383
* Special value to tell we are adding more API
384
* OAuths and _not_ to reset the oauth.json file.
385
*
386
* This can be bitwise OR'd with any of the above.
387
*/
388
- MTD_EP_API_ADD = (1 << 29),
+ MTD_EP_API_ADD = (1 << 29),
389
390
/* Only used internally */
391
- MTD_EP_API_NULL = (1 << 30)
+ MTD_EP_API_NULL = (1 << 30)
392
393
394
enum mtd_data_src_type {
0 commit comments