Skip to content

Commit

Permalink
staging: brcm80211: fix "ERROR: space required before that ..."
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jason Cooper authored and Greg Kroah-Hartman committed Sep 14, 2010
1 parent 914d69d commit a0e5ccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/brcm80211/include/bcmutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ extern "C" {
}

#ifndef ABS
#define ABS(a) (((a) < 0)?-(a):(a))
#define ABS(a) (((a) < 0)? -(a):(a))
#endif /* ABS */

#ifndef MIN
Expand Down

0 comments on commit a0e5ccd

Please sign in to comment.