commit | 0ed8b6f67f26acc2e88dfc6be4954e63f943bd28 | [log] [tgz] |
---|---|---|
author | Blue Swirl <blauwirbel@gmail.com> | Sun Jul 08 06:56:53 2012 +0000 |
committer | Blue Swirl <blauwirbel@gmail.com> | Sat Jul 28 09:23:11 2012 +0000 |
tree | 8490bfb39362e56f8238ba9208114764bc938d7e | |
parent | 16fd921bd3a266d321071739cf40785abce4bcb1 [diff] [blame] |
Avoid returning void It's silly and non-conforming to standards to return void, don't do it. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
diff --git a/block.c b/block.c index ce7eb8f..b38940b 100644 --- a/block.c +++ b/block.c
@@ -2609,7 +2609,7 @@ return; } - return drv->bdrv_debug_event(bs, event); + drv->bdrv_debug_event(bs, event); }