From owner-svn-src-projects@freebsd.org Sun Aug 9 00:22:00 2015 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 907F19B7CCB for ; Sun, 9 Aug 2015 00:22:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81FBF13BA; Sun, 9 Aug 2015 00:22:00 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t790M0ss039881; Sun, 9 Aug 2015 00:22:00 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t790M0KH039856; Sun, 9 Aug 2015 00:22:00 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508090022.t790M0KH039856@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 9 Aug 2015 00:22:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r286494 - projects/collation/lib/libc/locale X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 00:22:00 -0000 Author: bapt Date: Sun Aug 9 00:21:59 2015 New Revision: 286494 URL: https://svnweb.freebsd.org/changeset/base/286494 Log: Fix typo Fix bad location for include Reported by: jilles Modified: projects/collation/lib/libc/locale/collate.c projects/collation/lib/libc/locale/collate.h Modified: projects/collation/lib/libc/locale/collate.c ============================================================================== --- projects/collation/lib/libc/locale/collate.c Sun Aug 9 00:19:14 2015 (r286493) +++ projects/collation/lib/libc/locale/collate.c Sun Aug 9 00:21:59 2015 (r286494) @@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$"); #include "collate.h" #include "setlocale.h" #include "ldpart.h" +#include "libc_private.h" struct xlocale_collate __xlocale_global_collate = { {{0}, "C"}, 1, 0, 0, 0 @@ -62,8 +63,6 @@ struct xlocale_collate __xlocale_C_colla {{0}, "C"}, 1, 0, 0, 0 }; -#include "libc_private.h" - int __collate_load_tables_l(const char *encoding, struct xlocale_collate *table); Modified: projects/collation/lib/libc/locale/collate.h ============================================================================== --- projects/collation/lib/libc/locale/collate.h Sun Aug 9 00:19:14 2015 (r286493) +++ projects/collation/lib/libc/locale/collate.h Sun Aug 9 00:21:59 2015 (r286494) @@ -42,7 +42,7 @@ #include "xlocale_private.h" /* - * Work around buildworld bootstrapping from older systems whos limits.h + * Work around buildworld bootstrapping from older systems whose limits.h * sets COLL_WEIGHTS_MAX to 0. */ #if COLL_WEIGHTS_MAX == 0