]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/samples/coll/coll.cpp
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / samples / coll / coll.cpp
index 402ba4b49ae6557593d79cdddb9fb40816fa187e..28e52392c0a7061b6c6546c46cee50a729c96ca0 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
  * COPYRIGHT:
- * Copyright (C) 2002-2003 IBM, Inc.   All Rights Reserved.
+ * Copyright (C) 2002-2006 IBM, Inc.   All Rights Reserved.
  *
  ********************************************************************/
 
@@ -86,7 +86,8 @@ UBool processOptions(int argc, const char **argv, OptSpec opts[])
 {
     for (int argNum = 1; argNum < argc; argNum ++) {
         const char *pArgName = argv[argNum];
-        for (OptSpec *pOpt = opts;  pOpt->name != 0; pOpt ++) {
+        OptSpec *pOpt;
+        for (pOpt = opts;  pOpt->name != 0; pOpt ++) {
             if (strcmp(pOpt->name, pArgName) == 0) {
                 switch (pOpt->type) {
                 case OptSpec::FLAG: