diff options
author | Pixel <> | 2001-04-16 15:12:16 +0000 |
---|---|---|
committer | Pixel <> | 2001-04-16 15:12:16 +0000 |
commit | e09044e963015cf672d0f992264ee1563717602a (patch) | |
tree | 1a55d7d5e46401a41ca7bc24e597d90b0b720601 /lib/interne.c | |
parent | 3953a2906211a6c0007079dcafe66aa372ab33d1 (diff) |
Indentation
Diffstat (limited to 'lib/interne.c')
-rw-r--r-- | lib/interne.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/interne.c b/lib/interne.c index 5a563fe..a8e1db5 100644 --- a/lib/interne.c +++ b/lib/interne.c @@ -22,7 +22,7 @@ void Set(Uint32 * i) void ResetBit(Uint32 * i, int position) { if (position < 0 || position > 31) { - exception(1,_("ResetBit: Incorrect Value")); + exception(1, _("ResetBit: Incorrect Value")); } else { Uint32 aux = VAL_MAX - (1 << position); @@ -34,7 +34,7 @@ void ResetBit(Uint32 * i, int position) void SetBit(Uint32 * i, int position) { if (position < 0 || position > 31) { - exception(1,_("SetBit: Incorrect Value")); + exception(1, _("SetBit: Incorrect Value")); } else { Uint32 aux = 1 << position; @@ -46,7 +46,7 @@ void SetBit(Uint32 * i, int position) int ValeurBit(Uint32 nombre, int position) { if (position < 0 || position > 31) { - exception(1,_("ValeurBit: Incorrect Value")); + exception(1, _("ValeurBit: Incorrect Value")); return (-1); } return ((nombre >> position) & 1); |