~ubuntu-branches/ubuntu/oneiric/luatex/oneiric

« back to all changes in this revision

Viewing changes to source/texk/web2c/luatexdir/luafontloader/fontforge/fontforge/nouiutil.c

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2009-12-25 09:47:05 UTC
  • mfrom: (1.1.9 upstream) (4.2.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091225094705-y33rpflo8t4u9nag
Tags: 0.50.0-1
* new upstream release
* disable fix-hurd-ftbfs patch, included upstream
* disable upstram-fixes, included upstream
* disable ubuntu_libpoppler-0.11, not needed anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
static void NOUI__LogError(const char *format,va_list ap) {
43
43
    char buffer[400], *str;
44
44
    vsnprintf(buffer,sizeof(buffer),format,ap);
45
 
    str = utf82def_copy(buffer);
 
45
    str = (char *)buffer;
46
46
    fprintf(stderr,"%s",str);
47
47
    if ( str[strlen(str)-1]!='\n' )
48
48
        putc('\n',stderr);