summaryrefslogtreecommitdiff
path: root/shared_json.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared_json.c')
-rw-r--r--shared_json.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/shared_json.c b/shared_json.c
index 79ab00b0..f7a2f9f3 100644
--- a/shared_json.c
+++ b/shared_json.c
@@ -24,11 +24,12 @@ PERMISSIONS
#include "gpsd.h"
#include "gps_json.h"
-int json_device_read(const char *buf,
- /*@out@*/struct devconfig_t *dev,
- /*@null@*/const char **endptr)
+int json_device_read(const char *buf,
+ /*@out@*/ struct devconfig_t *dev,
+ /*@null@*/ const char **endptr)
{
/*@ -fullinitblock @*/
+ /* *INDENT-OFF* */
const struct json_attr_t json_attrs_device[] = {
{"class", t_check, .dflt.check = "DEVICE"},
@@ -54,6 +55,7 @@ int json_device_read(const char *buf,
.dflt.real = NAN},
{NULL},
};
+ /* *INDENT-ON* */
/*@ +fullinitblock @*/
int status;
@@ -64,11 +66,12 @@ int json_device_read(const char *buf,
return 0;
}
-int json_watch_read(const char *buf,
- /*@out@*/struct policy_t *ccp,
- /*@null@*/const char **endptr)
+int json_watch_read(const char *buf,
+ /*@out@*/ struct policy_t *ccp,
+ /*@null@*/ const char **endptr)
{
/*@ -fullinitblock @*/
+ /* *INDENT-OFF* */
struct json_attr_t chanconfig_attrs[] = {
{"class", t_check, .dflt.check = "WATCH"},
@@ -86,6 +89,7 @@ int json_watch_read(const char *buf,
.len = sizeof(ccp->devpath)},
{NULL},
};
+ /* *INDENT-ON* */
/*@ +fullinitblock @*/
int status;