summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_crawl.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-05 14:03:46 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-10-05 14:03:46 +0200
commitbc9b735b081a450dc6be3425e04fcc01e012c149 (patch)
tree73b0d777f96faf92888f70c9d4c893760e6a7043 /crawl-ref/source/l_crawl.cc
parenta98f0842a671faaad92e9821ab3c7c21d8aa866b (diff)
downloadcrawl-ref-bc9b735b081a450dc6be3425e04fcc01e012c149.tar.gz
crawl-ref-bc9b735b081a450dc6be3425e04fcc01e012c149.zip
Reformat multi-line array literals.
Diffstat (limited to 'crawl-ref/source/l_crawl.cc')
-rw-r--r--crawl-ref/source/l_crawl.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/l_crawl.cc b/crawl-ref/source/l_crawl.cc
index 34ea9b735f..f5e4c661f9 100644
--- a/crawl-ref/source/l_crawl.cc
+++ b/crawl-ref/source/l_crawl.cc
@@ -721,7 +721,8 @@ static int crawl_worley_diff(lua_State *ls)
static int crawl_split_bytes(lua_State *ls)
{
uint32_t val = lua_tonumber(ls,1);
- uint8_t bytes[4] = {
+ uint8_t bytes[4] =
+ {
(uint8_t)(val >> 24),
(uint8_t)(val >> 16),
(uint8_t)(val >> 8),