Skip to content

Commit

Permalink
fix fedora 11 type mismatch warning (actually an error in this case)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Byington committed Mar 15, 2009
1 parent 77d9325 commit 1e9aca5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
LibPST 0.6.33 (2009-xx-xx)
===============================

* fix fedora 11 type mismatch warning (actually an error in this case).

LibPST 0.6.32 (2009-03-14)
===============================

Expand Down
2 changes: 1 addition & 1 deletion configure.in
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
AC_INIT(libpst,0.6.32,carl@five-ten-sg.com)
AC_INIT(libpst,0.6.33,carl@five-ten-sg.com)
AC_CONFIG_SRCDIR([src/libpst.c])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE
Expand Down
2 changes: 1 addition & 1 deletion src/pst2dii.cpp.in
Expand Up @@ -613,7 +613,7 @@ static void process(pst_item *outeritem, file_ll *parent, pst_desc_ll *d_ptr)
if (item) {
if (item->folder && d_ptr->child ) {
//if this is a non-empty folder, we want to recurse into it
fprintf(stderr, "entering folder %s\n", item->file_as);
fprintf(stderr, "entering folder %s\n", item->file_as.str);
process(item, &ff, d_ptr->child);
} else if (item->email && (item->type == PST_TYPE_NOTE || item->type == PST_TYPE_REPORT || item->type == PST_TYPE_OTHER)) {
ff.email_count++;
Expand Down

0 comments on commit 1e9aca5

Please sign in to comment.