gcc43+linux compile

This commit is contained in:
dockes 2009-10-21 11:32:49 +00:00
parent 16c95bb04a
commit 6bd43301e1
2 changed files with 5 additions and 2 deletions

View File

@ -96,7 +96,9 @@ bool MimeHandlerText::set_document_string(const string& otext)
bool MimeHandlerText::skip_to_document(const string& ipath)
{
sscanf(ipath.c_str(), "%lld", &m_offs);
long long t;
sscanf(ipath.c_str(), "%lld", &t);
m_offs = (off_t)t;
readnext();
return true;
}
@ -136,7 +138,7 @@ bool MimeHandlerText::next_document()
// be to use a different mtype for files over the page size,
// and keep text/plain only for smaller files.
char buf[20];
sprintf(buf, "%lld", m_offs - m_text.length());
sprintf(buf, "%lld", (long long)(m_offs - m_text.length()));
if (m_offs - m_text.length() != 0)
m_metaData["ipath"] = buf;
readnext();

View File

@ -47,6 +47,7 @@ static char rcsid[] = "@(#$Id: $ (C) 2009 J.F.Dockes";
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <sys/param.h>
/* #define DEBUG_CLOSEFROM*/