Browse Source

fixed 18 files out of 2788:

- removed 121 CR characters
 - removed 0 trailing whitespaces
 - replaced 1 tabs with spaces
 - fixed 18 svn:eol-style properties
undefined
Lolbot Sam Hocevar <sam@hocevar.net> 10 years ago
parent
commit
bb4f3923cd
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      build/check-source.sh
  2. +1
    -1
      src/image/codec/zed-image.cpp

+ 1
- 1
build/check-source.sh View File

@@ -73,7 +73,7 @@ esac
if [ -f "$top_srcdir/.git/index" ]; then
info "detected Git repository"
repo=git
elif [ -f "$top_srcdir/.svn/format" ]; then
elif [ -f "$top_srcdir/.svn/format" -o -f "$top_srcdir/.svn/wc.db" ]; then
info "detected SVN repository"
repo=svn
else


+ 1
- 1
src/image/codec/zed-image.cpp View File

@@ -168,7 +168,7 @@ bool ZedImageData::Open(char const *path)

//Prepare read
uint32_t header_length = (size_y + 5) & 0xFC;
uint32_t data_length = (file_offset[i+1] - file_offset[i]) - header_length;
uint32_t data_length = (file_offset[i+1] - file_offset[i]) - header_length;
uint32_t data_pos = file_offset[i] + header_length;

//Prepare buffer and tiles infos


Loading…
Cancel
Save