diff options
author | Brian <[email protected]> | 2008-01-25 17:34:04 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-01-25 17:34:04 -0700 |
commit | b5618330c64d8bdb260c258e0b47c8047ce41112 (patch) | |
tree | 480ad845b383f88fecbf22012b004fee80d20a9c /src/mesa | |
parent | 4d534124e77109a0405bf68dc3fa1a370f5ea014 (diff) |
Cell: typedefs need semicolons, Ian :)
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/cell/spu/spu_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/cell/spu/spu_main.c b/src/mesa/pipe/cell/spu/spu_main.c index f9e15538b8b..ef605a51973 100644 --- a/src/mesa/pipe/cell/spu/spu_main.c +++ b/src/mesa/pipe/cell/spu/spu_main.c @@ -624,9 +624,9 @@ one_time_init(void) * select between the two. */ #ifdef SPU_MAIN_PARAM_LONG_LONG -typedef unsigned long long main_param_t +typedef unsigned long long main_param_t; #else -typedef unsigned long main_param_t +typedef unsigned long main_param_t; #endif /** |