X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=datapath%2Ftable.c;h=79b9bc1bd2c8f7b8793aa2b5f6b8cbd7b8295a72;hb=bffc058934d43fb5a2c8629ee914a949ddf80c8e;hp=b54534a6df5215ca96c5113a5f0f7540c1cd6c08;hpb=633d3ac7dc4ac473a4e2a4f7bff32f3023b45cf6;p=openvswitch diff --git a/datapath/table.c b/datapath/table.c index b54534a6..79b9bc1b 100644 --- a/datapath/table.c +++ b/datapath/table.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Nicira Networks. + * Copyright (c) 2009, 2010, 2011 Nicira Networks. * Distributed under the terms of the GNU GPL version 2. * * Significant portions of this file may be copied from parts of the Linux @@ -98,7 +98,7 @@ struct tbl *tbl_create(unsigned int n_buckets) { struct tbl *table; - table = kzalloc(sizeof *table, GFP_KERNEL); + table = kzalloc(sizeof(*table), GFP_KERNEL); if (!table) goto err;