Add missing semicolon in smp/atomic.h

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

View file

@ -58,7 +58,6 @@ static char rcsid[] = "$Id$";
#include <smp/atomic.h>
#if defined(SMP)
#include<arch/smp/mpspec.h>
#include<arch/smp/atomic.h>
#endif

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) }
/**