Date: Tue, 24 May 2011 17:03:46 +0000 (UTC) From: "Andrey V. Elsukov" <ae@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r222264 - head/sbin/geom/class/part Message-ID: <201105241703.p4OH3lWL078318@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ae Date: Tue May 24 17:03:46 2011 New Revision: 222264 URL: http://svn.freebsd.org/changeset/base/222264 Log: Simplify ALIGNDOWN macro. Modified: head/sbin/geom/class/part/geom_part.c Modified: head/sbin/geom/class/part/geom_part.c ============================================================================== --- head/sbin/geom/class/part/geom_part.c Tue May 24 16:49:34 2011 (r222263) +++ head/sbin/geom/class/part/geom_part.c Tue May 24 17:03:46 2011 (r222264) @@ -295,7 +295,7 @@ fmtattrib(struct gprovider *pp) return (buf); } -#define ALIGNDOWN(d, a) ((d) % (a) ? (d) - (d) % (a): (d)) +#define ALIGNDOWN(d, a) ((d) - (d) % (a)) #define ALIGNUP(d, a) ((d) % (a) ? (d) - (d) % (a) + (a): (d)) static int
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105241703.p4OH3lWL078318>