ceilf-ieee: Work around bug on MacOS X 10.5.
[pspp] / lib / mbsnlen.c
index 78c751f35b7f801a939588436133683b097656de..e597d5a2f41e3071dfa814414d46b6d9d94f6200 100644 (file)
@@ -1,5 +1,5 @@
 /* Counting the multibyte characters in a string.
-   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+   Copyright (C) 2007-2011 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2007.
 
    This program is free software: you can redistribute it and/or modify
@@ -36,7 +36,7 @@ mbsnlen (const char *string, size_t len)
 
       count = 0;
       for (mbi_init (iter, string, len); mbi_avail (iter); mbi_advance (iter))
-       count++;
+        count++;
 
       return count;
     }