From 847c7448532ddf90f28ace17233f4993e403f6f2 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 4 Feb 2010 11:23:23 -0800 Subject: [PATCH] list: Fix indentation. --- lib/list.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/list.h b/lib/list.h index bc8ea148..845aab20 100644 --- a/lib/list.h +++ b/lib/list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,11 +23,10 @@ #include "util.h" /* Doubly linked list head or element. */ -struct list - { +struct list { struct list *prev; /* Previous list element. */ struct list *next; /* Next list element. */ - }; +}; #define LIST_INITIALIZER(LIST) { LIST, LIST } -- 2.30.2