diff options
author | Denys Vlasenko | 2018-01-08 09:43:51 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-01-08 09:43:51 +0100 |
commit | cb9c3894e50ecd5e940bb8a248fdb49da8e0c918 (patch) | |
tree | eef91cbb300825ad8cedd1877df3bcf3d88a5532 /procps/powertop.c | |
parent | 844a6c5abdcb5a189e91cb7ca3742bcaed25a4da (diff) | |
download | busybox-cb9c3894e50ecd5e940bb8a248fdb49da8e0c918.zip busybox-cb9c3894e50ecd5e940bb8a248fdb49da8e0c918.tar.gz |
*: make "argc UNUSED_PARAM" consistent
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps/powertop.c')
-rw-r--r-- | procps/powertop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/powertop.c b/procps/powertop.c index 2872035..004b4ce 100644 --- a/procps/powertop.c +++ b/procps/powertop.c @@ -686,7 +686,7 @@ static void show_timerstats(void) //usage: "Analyze power consumption on Intel-based laptops" int powertop_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int powertop_main(int UNUSED_PARAM argc, char UNUSED_PARAM **argv) +int powertop_main(int argc UNUSED_PARAM, char UNUSED_PARAM **argv) { ullong cur_usage[MAX_CSTATE_COUNT]; ullong cur_duration[MAX_CSTATE_COUNT]; |