From b4beb1a5cb427caf11b13fd58312545c8025cbc0 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Mon, 2 Nov 2009 21:34:32 +0000 Subject: [PATCH] Sync OpenBSD patchset 473: Missing ;. From eric@ ages ago. --- array.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/array.h b/array.h index 847e7171..6507e304 100644 --- a/array.h +++ b/array.h @@ -1,4 +1,4 @@ -/* $Id: array.h,v 1.8 2009-10-28 23:12:38 tcunha Exp $ */ +/* $Id: array.h,v 1.9 2009-11-02 21:34:32 tcunha Exp $ */ /* * Copyright (c) 2006 Nicholas Marriott @@ -102,7 +102,7 @@ #define ARRAY_CONCAT(a, b) do { \ ARRAY_ENSURE(a, (b)->num); \ - memcpy((a)->list + (a)->num, (b)->list, (b)->num * ARRAY_ITEMSIZE(a)) \ + memcpy((a)->list + (a)->num, (b)->list, (b)->num * ARRAY_ITEMSIZE(a)); \ (a)->num += (b)->num; \ } while (0)