diff options
Diffstat (limited to 'Userland/Utilities/arp.cpp')
-rw-r--r-- | Userland/Utilities/arp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/arp.cpp b/Userland/Utilities/arp.cpp index 6b51cad357..616127ff9e 100644 --- a/Userland/Utilities/arp.cpp +++ b/Userland/Utilities/arp.cpp @@ -31,8 +31,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) static bool flag_set; static bool flag_delete; - const char* value_ipv4_address = nullptr; - const char* value_hw_address = nullptr; + char const* value_ipv4_address = nullptr; + char const* value_hw_address = nullptr; Core::ArgsParser args_parser; args_parser.set_general_help("Display or modify the system ARP cache"); |