maint: update copyright
[gnulib.git] / lib / mbsnlen.c
index 78c751f..db268a2 100644 (file)
@@ -1,5 +1,5 @@
 /* Counting the multibyte characters in a string.
-   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+   Copyright (C) 2007-2014 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;
     }