Add missing semicolon in smp/atomic.h

This commit is contained in:
Eric W. Biederman 2001-08-09 19:48:33 +00:00
commit 94b5887f47
2 changed files with 1 additions and 2 deletions

View file

@ -5,7 +5,7 @@
#include <arch/smp/atomic.h>
#else
typedef struct { int counter } atomic_t;
typedef struct { int counter; } atomic_t;
#define ATOMIC_INIT(i) { (i) }
/**