diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-22 19:54:52 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-22 19:54:52 +0200 |
| commit | 31941d9f3b2a665317503166785a3eb6cef35a9c (patch) | |
| tree | c0740c7c14689593ff405d62f3111f9c326cc2d0 /src/modules/modBasic.c | |
| parent | f760a8c01827d97affff6acc0ec666b30e26395f (diff) | |
fix _all_ warnings // used macro UNUSET
Diffstat (limited to 'src/modules/modBasic.c')
| -rw-r--r-- | src/modules/modBasic.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/modBasic.c b/src/modules/modBasic.c index 7bddd7a..012466e 100644 --- a/src/modules/modBasic.c +++ b/src/modules/modBasic.c @@ -35,6 +35,11 @@ int init(export_fce_t * p) int draw(int x, int y, int w, int h) { + UNUSET(x); + UNUSET(y); + UNUSET(w); + UNUSET(h); + printf("Drawing Basic module.\n"); return 0; } |