Skip to content

Commit

Permalink
scxtop: fix short option conflict between tick* options.
Browse files Browse the repository at this point in the history
  • Loading branch information
devnexen committed Jan 30, 2025
1 parent c7ba8f2 commit a598e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/scxtop/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const TRACE_FILE_PREFIX: &'static str = "scxtop_trace";
#[command(about = APP)]
struct Args {
/// App tick rate in milliseconds.
#[arg(short, long, default_value_t = 250)]
#[arg(short = 'r', long, default_value_t = 250)]
tick_rate_ms: usize,
/// Extra verbose output.
#[arg(short, long, default_value_t = false)]
Expand Down

0 comments on commit a598e54

Please sign in to comment.