~ubuntu-branches/ubuntu/trusty/manaplus/trusty

« back to all changes in this revision

Viewing changes to src/utils/physfstools.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-10-07 10:26:14 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131007102614-tg2zjdz8vmtl6n7i
Tags: 1.3.9.29-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include "utils/physfstools.h"
22
22
 
23
 
#include "logger.h"
 
23
#include "localconsts.h"
24
24
 
25
25
const char *dirSeparator = nullptr;
26
26
 
61
61
        return PHYSFS_isDirectory(fname);
62
62
    }
63
63
 
64
 
    void freeList(void *listVar)
 
64
    void freeList(void *const listVar)
65
65
    {
66
66
        PHYSFS_freeList(listVar);
67
67
    }