From 4c00be77ffab7afc750a9559c91062687dda41c8 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 19 Jan 2015 22:17:36 -0500 Subject: [PATCH] Fix trailing whitespace. --- tmux-mem-cpu-load.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tmux-mem-cpu-load.cc b/tmux-mem-cpu-load.cc index 11180c2..737899a 100644 --- a/tmux-mem-cpu-load.cc +++ b/tmux-mem-cpu-load.cc @@ -87,17 +87,17 @@ void print_help() { using std::cout; using std::endl; - + cout << "tmux-mem-cpu-load v" << tmux_mem_cpu_load_VERSION << endl << "Usage: tmux-mem-cpu-load [OPTIONS]\n\n" << "Available options:\n" << "-h, --help\n" << "\t Prints this help message\n" - << "--colors\n" + << "--colors\n" << "\tUse tmux colors in output\n" - << "-i , --interval \n" + << "-i , --interval \n" << "\tSet tmux status refresh interval in seconds. Default: 1 second\n" - << "-g , --graph-lines \n" + << "-g , --graph-lines \n" << "\tSet how many lines should be drawn in a graph. Default: 10\n" << endl; } @@ -121,7 +121,7 @@ int main( int argc, char** argv ) { 0, 0, 0, 0 } // used to handle unknown long options }; - int c; + int c; // while c != -1 while( (c = getopt_long( argc, argv, "hi:g:", long_options, NULL) ) != -1 ) { @@ -160,8 +160,8 @@ int main( int argc, char** argv ) } } - std::cout << mem_string( use_colors ) << ' ' - << cpu_string( cpu_usage_delay, graph_lines, use_colors ) << ' ' + std::cout << mem_string( use_colors ) << ' ' + << cpu_string( cpu_usage_delay, graph_lines, use_colors ) << ' ' << load_string( use_colors ); return EXIT_SUCCESS;