Tests: Fix unused value warning

Change-Id: Iee5274235f034bc3bbb2688f6cfaa6a4a2430530
Reviewed-by: Lukas Holecek <hluk@email.cz>
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Orgad Shaneh
2013-03-04 21:37:48 +02:00
committed by hjk
parent 8e1e6fd61a
commit 17dca2450a

View File

@@ -36,7 +36,7 @@ int main()
lower = strdup("asdf");
while (*lower)
*(lower++);
lower++;
return 0;
}