fix printf warning
[oweals/busybox.git] / libbb / chomp.c
index 94404a98d2df2e08cd9995cbed544c58abeff73f..774e533d4117a0d006fce94b491501706eb604df 100644 (file)
@@ -2,8 +2,8 @@
 /*
  * Utility routines.
  *
- * Copyright (C) many different people.  If you wrote this, please
- * acknowledge your work.
+ * Copyright (C) many different people.
+ * If you wrote this, please acknowledge your work.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -29,7 +29,7 @@
 void chomp(char *s)
 {
        char *lc = last_char_is(s, '\n');
-       
+
        if(lc)
                *lc = 0;
 }