X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Flist.c;h=804a7e56adc10e452f008ffafed9ca2010931ce1;hb=248a2130b0374d046057b2995c645c23172d4b84;hp=a236f8c73bfaf4232c9331dd46ab216f3f6f23ca;hpb=a3c4dc652ff62b2444a1cd5bd92f9a5fccacab6b;p=openvswitch diff --git a/lib/list.c b/lib/list.c index a236f8c7..804a7e56 100644 --- a/lib/list.c +++ b/lib/list.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -136,7 +136,7 @@ list_pop_back(struct list *list) struct list * list_front(const struct list *list_) { - struct list *list = (struct list *) list_; + struct list *list = CONST_CAST(struct list *, list_); assert(!list_is_empty(list)); return list->next; @@ -147,7 +147,7 @@ list_front(const struct list *list_) struct list * list_back(const struct list *list_) { - struct list *list = (struct list *) list_; + struct list *list = CONST_CAST(struct list *, list_); assert(!list_is_empty(list)); return list->prev;