summaryrefslogtreecommitdiff
path: root/lib/interne.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/interne.c')
-rw-r--r--lib/interne.c6
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);