From owner-svn-soc-all@FreeBSD.ORG Wed Jun 18 06:37:19 2014 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D80FB27 for ; Wed, 18 Jun 2014 06:37:19 +0000 (UTC) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A4C42C1B for ; Wed, 18 Jun 2014 06:37:19 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5I6bJC2086771 for ; Wed, 18 Jun 2014 06:37:19 GMT (envelope-from seiya@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.8/8.14.8/Submit) id s5I6bI3h086640 for svn-soc-all@FreeBSD.org; Wed, 18 Jun 2014 06:37:18 GMT (envelope-from seiya@FreeBSD.org) Date: Wed, 18 Jun 2014 06:37:18 GMT Message-Id: <201406180637.s5I6bI3h086640@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to seiya@FreeBSD.org using -f From: seiya@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r269716 - soc2014/seiya/bootsplash/sys/dev/fb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 06:37:19 -0000 Author: seiya Date: Wed Jun 18 06:37:18 2014 New Revision: 269716 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=269716 Log: fix a comment Modified: soc2014/seiya/bootsplash/sys/dev/fb/bmp.c Modified: soc2014/seiya/bootsplash/sys/dev/fb/bmp.c ============================================================================== --- soc2014/seiya/bootsplash/sys/dev/fb/bmp.c Wed Jun 18 06:33:23 2014 (r269715) +++ soc2014/seiya/bootsplash/sys/dev/fb/bmp.c Wed Jun 18 06:37:18 2014 (r269716) @@ -433,7 +433,7 @@ bmp_DecodeRLE8(BMP_INFO *info, int line, int sx, int width) { int i; - int count; /* pixels to be drawn at the `y`th line */ + int count; /* number of pixels to be drawn at once by bmp_draw_line() */ int x,y; /* screen position on screen */ y = line;