From owner-svn-src-head@FreeBSD.ORG Thu Jul 10 16:10:40 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D03ECCE; Thu, 10 Jul 2014 16:10:40 +0000 (UTC) Received: from svn.freebsd.org (svn.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 EE96E29FB; Thu, 10 Jul 2014 16:10:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6AGAdop069621; Thu, 10 Jul 2014 16:10:39 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6AGAdB5069620; Thu, 10 Jul 2014 16:10:39 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201407101610.s6AGAdB5069620@svn.freebsd.org> From: Ed Schouten Date: Thu, 10 Jul 2014 16:10:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r268500 - head/usr.bin/users X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jul 2014 16:10:40 -0000 Author: ed Date: Thu Jul 10 16:10:39 2014 New Revision: 268500 URL: http://svnweb.freebsd.org/changeset/base/268500 Log: Fix a couple of style nits. - Use set instead of std::set, to be consistent with the rest of the file. - Remove return (0); it's not required. - Add a dash at the beginning of the copyright, per style(9). Modified: head/usr.bin/users/users.cc Modified: head/usr.bin/users/users.cc ============================================================================== --- head/usr.bin/users/users.cc Thu Jul 10 15:58:28 2014 (r268499) +++ head/usr.bin/users/users.cc Thu Jul 10 16:10:39 2014 (r268500) @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2014 Pietro Cerutti * All rights reserved. * @@ -35,8 +35,8 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include +#include using namespace std; int @@ -57,10 +57,9 @@ main(int argc, char **) endutxent(); if (!names.empty()) { - std::set::iterator last = names.end(); + set::iterator last = names.end(); --last; copy(names.begin(), last, ostream_iterator(cout, " ")); cout << *last << endl; } - return (0); }