From f32e0af830337e337d0c940795945d4fe91c74ad Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Tue, 3 Nov 2020 01:21:05 -0800 Subject: [PATCH] Update resetprop help msg --- native/jni/resetprop/resetprop.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/native/jni/resetprop/resetprop.cpp b/native/jni/resetprop/resetprop.cpp index f5e194775..66575ad4b 100644 --- a/native/jni/resetprop/resetprop.cpp +++ b/native/jni/resetprop/resetprop.cpp @@ -20,7 +20,7 @@ static int (*system_property_set)(const char*, const char*); [[noreturn]] static void usage(char* arg0) { fprintf(stderr, -R"EOF("resetprop - System Props Modification Tool +R"EOF(resetprop - System Property Manipulation Tool Usage: %s [flags] [options...] @@ -34,10 +34,10 @@ Options: Flags: -v print verbose output to stderr - -n set properties without going through init - affects setprop and prop file loading - -p also access props directly from persist storage - affects getprop and delprop + -n set props without going through property_service + (this flag only affects setprop) + -p read/write props from/to persistent storage + (this flag only affects getprop and delprop) )EOF", arg0); exit(1);