From owner-svn-src-head@FreeBSD.ORG Fri Oct 23 15:10:41 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D3F810656D3; Fri, 23 Oct 2009 15:10:41 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5C62E8FC0A; Fri, 23 Oct 2009 15:10:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n9NFAfPM064710; Fri, 23 Oct 2009 15:10:41 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n9NFAfKM064708; Fri, 23 Oct 2009 15:10:41 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200910231510.n9NFAfKM064708@svn.freebsd.org> From: John Baldwin Date: Fri, 23 Oct 2009 15:10:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r198409 - head/sys/sys X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 23 Oct 2009 15:10:41 -0000 Author: jhb Date: Fri Oct 23 15:10:41 2009 New Revision: 198409 URL: http://svn.freebsd.org/changeset/base/198409 Log: Style fix. Modified: head/sys/sys/ktrace.h Modified: head/sys/sys/ktrace.h ============================================================================== --- head/sys/sys/ktrace.h Fri Oct 23 15:09:51 2009 (r198408) +++ head/sys/sys/ktrace.h Fri Oct 23 15:10:41 2009 (r198409) @@ -52,7 +52,7 @@ struct ktr_header { int ktr_len; /* length of buf */ short ktr_type; /* trace record type */ pid_t ktr_pid; /* process id */ - char ktr_comm[MAXCOMLEN+1]; /* command name */ + char ktr_comm[MAXCOMLEN + 1];/* command name */ struct timeval ktr_time; /* timestamp */ intptr_t ktr_tid; /* was ktr_buffer */ };