From: Jean-Marc Lasgouttes Date: Mon, 29 Sep 2008 10:13:28 +0000 (+0000) Subject: compilation fix X-Git-Tag: 1.6.10~3272 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1c76b4b11d9d720d9bb5bccfb8a82e0c0c9618d2;p=features.git compilation fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26616 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/FileName.cpp b/src/support/FileName.cpp index a625e01e4e..35c0f136d7 100644 --- a/src/support/FileName.cpp +++ b/src/support/FileName.cpp @@ -512,7 +512,7 @@ unsigned long FileName::checksum() const boost::crc_32_type crc; crc.process_block(beg, end); - unsigned long result = crc.checksum(); + result = crc.checksum(); munmap(mm, info.st_size); close(fd);