summaryrefslogtreecommitdiff
path: root/omapip/support.c
diff options
context:
space:
mode:
authorTomek Mrugalski <tomek@isc.org>2022-01-19 20:14:16 +0100
committerTomek Mrugalski <tomek@isc.org>2022-01-20 12:04:28 +0100
commitf6b8f48d1665c4487dedbcfa4dca435a0d67ddeb (patch)
tree19926f31f56890bc8c7f5d3bc5b2e2c16b96794e /omapip/support.c
parent429a56d73c0f9f2edf400fd6313850a3ce4fd809 (diff)
downloadisc-dhcp-f6b8f48d1665c4487dedbcfa4dca435a0d67ddeb.tar.gz
[#189] Whitespace fixes in opened files
Diffstat (limited to 'omapip/support.c')
-rw-r--r--omapip/support.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/omapip/support.c b/omapip/support.c
index 6ad625a3..f3791de0 100644
--- a/omapip/support.c
+++ b/omapip/support.c
@@ -745,18 +745,18 @@ isc_result_t omapi_make_object_value (omapi_value_t **vp,
const char *file, int line)
{
isc_result_t status;
-
+
status = omapi_value_new (vp, file, line);
if (status != ISC_R_SUCCESS)
return status;
-
+
status = omapi_data_string_reference (&(*vp) -> name,
name, file, line);
if (status != ISC_R_SUCCESS) {
omapi_value_dereference (vp, file, line);
return status;
}
-
+
if (value) {
status = omapi_typed_data_new (file, line, &(*vp) -> value,
omapi_datatype_object, value);
@@ -765,7 +765,7 @@ isc_result_t omapi_make_object_value (omapi_value_t **vp,
return status;
}
}
-
+
return ISC_R_SUCCESS;
}