Explorar el Código

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> hace 10 años
padre
commit
bb4f3923cd
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      build/check-source.sh
  2. +1
    -1
      src/image/codec/zed-image.cpp

+ 1
- 1
build/check-source.sh Ver fichero

@@ -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 Ver fichero

@@ -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


Cargando…
Cancelar
Guardar