Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libc/stdlib Fix capitalization



details:   https://anonhg.NetBSD.org/src/rev/e3a67a21bfdd
branches:  trunk
changeset: 341587:e3a67a21bfdd
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Nov 12 17:31:43 2015 +0000

description:
Fix capitalization

diffstat:

 common/lib/libc/stdlib/_strtol.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r eebb03de4827 -r e3a67a21bfdd common/lib/libc/stdlib/_strtol.h
--- a/common/lib/libc/stdlib/_strtol.h  Thu Nov 12 17:30:03 2015 +0000
+++ b/common/lib/libc/stdlib/_strtol.h  Thu Nov 12 17:31:43 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: _strtol.h,v 1.8 2015/11/12 17:23:51 christos Exp $ */
+/* $NetBSD: _strtol.h,v 1.9 2015/11/12 17:31:43 christos Exp $ */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -106,7 +106,7 @@
                s += 2;
                base = 16;
        } else if ((base == 0 || base == 2) &&
-           c == '0' && (*s == 'b' || *s == 'b')) {
+           c == '0' && (*s == 'b' || *s == 'B')) {
                c = s[1];
                s += 2;
                base = 2;



Home | Main Index | Thread Index | Old Index