chiark / gitweb /
tree-wide: beautify remaining copyright statements
[elogind.git] / src / basic / gunicode.c
index d89a2f3ed960a9146b8c50fa97fb3bfa879524ce..c51b1a7a18108fd3e47f8a0dd1395527ce4806e1 100644 (file)
@@ -1,7 +1,7 @@
 /* gunicode.c - Unicode manipulation functions
  *
  *  Copyright (C) 1999, 2000 Tom Tromey
- *  Copyright 2000, 2005 Red Hat, Inc.
+ *  Copyright © 2000, 2005 Red Hat, Inc.
  */
 
 #include "gunicode.h"
@@ -24,7 +24,7 @@
 char *
 utf8_prev_char (const char *p)
 {
-  while (1)
+  for (;;)
     {
       p--;
       if ((*p & 0xc0) != 0x80)