summaryrefslogtreecommitdiff
path: root/Userland/Utilities/jp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/jp.cpp')
-rw-r--r--Userland/Utilities/jp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/jp.cpp b/Userland/Utilities/jp.cpp
index 1523e01254..43584e8a03 100644
--- a/Userland/Utilities/jp.cpp
+++ b/Userland/Utilities/jp.cpp
@@ -15,7 +15,7 @@
#include <LibMain/Main.h>
#include <unistd.h>
-static void print(const JsonValue& value, int spaces_per_indent, int indent = 0, bool use_color = true);
+static void print(JsonValue const& value, int spaces_per_indent, int indent = 0, bool use_color = true);
static void print_indent(int indent, int spaces_per_indent)
{
for (int i = 0; i < indent * spaces_per_indent; ++i)
@@ -53,7 +53,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
return 0;
}
-void print(const JsonValue& value, int spaces_per_indent, int indent, bool use_color)
+void print(JsonValue const& value, int spaces_per_indent, int indent, bool use_color)
{
if (value.is_object()) {
size_t printed_members = 0;