diff options
author | Faheel Ahmad <faheel@live.in> | 2017-07-29 16:36:27 +0530 |
---|---|---|
committer | Faheel Ahmad <faheel@live.in> | 2017-07-29 16:36:27 +0530 |
commit | 6d44559b482af54a9a87572e29b9a05ee0cd41b7 (patch) | |
tree | c014c5baeb6a87d841ae6615d395b36e74b83d3a /src/redshift.c | |
parent | Fix #474: Format help text paragraph to 80 chars max (diff) | |
download | redshift-ng-6d44559b482af54a9a87572e29b9a05ee0cd41b7.tar.gz redshift-ng-6d44559b482af54a9a87572e29b9a05ee0cd41b7.tar.bz2 redshift-ng-6d44559b482af54a9a87572e29b9a05ee0cd41b7.tar.xz |
Limit lines to 80 chars
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/redshift.c b/src/redshift.c index eb1db2b..41629cc 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -461,10 +461,10 @@ print_help(const char *program_name) fputs("\n", stdout); /* TRANSLATORS: help output 5 */ - printf(_("The neutral temperature is %uK. Using this value will not change the color\n" - "temperature of the display. Setting the color temperature to a value higher\n" - "than this results in more blue light, and setting a lower value will result in\n" - "more red light.\n"), + printf(_("The neutral temperature is %uK. Using this value will not change " + "the color\ntemperature of the display. Setting the color temperature " + "to a value higher\nthan this results in more blue light, and setting " + "a lower value will result in\nmore red light.\n"), NEUTRAL_TEMP); fputs("\n", stdout); |