fix printf warning
[oweals/busybox.git] / libbb / chomp.c
index 4fcbb263d90faa451e64fc6dd43ed44539116cfe..774e533d4117a0d006fce94b491501706eb604df 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) many different people.  
+ * 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
@@ -29,7 +29,7 @@
 void chomp(char *s)
 {
        char *lc = last_char_is(s, '\n');
-       
+
        if(lc)
                *lc = 0;
 }