xts.c: fix incorrect return type of xts_shift and xts_xor0.4
commitc6f7edfe1eea56d39c7c5a7047ae1f67de043b8a
authorJan Krüger <jk@jk.gs>
Sun, 19 Feb 2012 09:42:25 +0000 (19 10:42 +0100)
committerJan Krüger <jk@jk.gs>
Sun, 19 Feb 2012 09:42:25 +0000 (19 10:42 +0100)
treea56cdca3218c7076f72d0d593727905f4e309803
parentbf595885a9fdfb842f8cf650ef02f38875cb9ac3
xts.c: fix incorrect return type of xts_shift and xts_xor

These functions were never meant to return anything (and no return value
is ever used), but they were mistakenly declared to return an int value.
Turn that into the void that it should be.
xts.c