Browse Source

Remove another c++ comment from the c code.

Bill Hoffman 15 years ago
parent
commit
38524ec8d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Utilities/cmlibarchive/libarchive/archive_read.c

+ 1 - 1
Utilities/cmlibarchive/libarchive/archive_read.c

@@ -1153,7 +1153,7 @@ __archive_read_skip(struct archive_read *a, int64_t request)
     if (skipped == request)
         return (skipped);
     /* We hit EOF before we satisfied the skip request. */
-    if (skipped < 0)  // Map error code to 0 for error message below.
+    if (skipped < 0)  /* Map error code to 0 for error message below. */
         skipped = 0;
     archive_set_error(&a->archive,
         ARCHIVE_ERRNO_MISC,