diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-22 20:03:05 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-22 20:03:05 +0200 |
| commit | b7b72cca9df9c9c3601e88ac1381802ac83014ee (patch) | |
| tree | a7805d76cc8fa90c37db4982c896f8060e7031f6 /src/modules/modBasic.c | |
| parent | 31941d9f3b2a665317503166785a3eb6cef35a9c (diff) | |
rename macro UNSET on UNSED
Diffstat (limited to 'src/modules/modBasic.c')
| -rw-r--r-- | src/modules/modBasic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/modBasic.c b/src/modules/modBasic.c index 012466e..3b0f9b3 100644 --- a/src/modules/modBasic.c +++ b/src/modules/modBasic.c @@ -35,10 +35,10 @@ int init(export_fce_t * p) int draw(int x, int y, int w, int h) { - UNUSET(x); - UNUSET(y); - UNUSET(w); - UNUSET(h); + UNUSED(x); + UNUSED(y); + UNUSED(w); + UNUSED(h); printf("Drawing Basic module.\n"); return 0; |