martijnvanbrummelen / nwipe

nwipe secure disk eraser
GNU General Public License v2.0
801 stars 86 forks source link

Recent commit broke compilation #118

Closed PartialVolume closed 5 years ago

PartialVolume commented 5 years ago

Recent commit #112 broke compilation.

Order of headers was changed from the correct order, i.e.

include "nwipe.h"

include "context.h"

include "method.h"

include "prng.h"

include "options.h"

include "logging.h"

include "version.h"

to the following which caused multiple compilation errors.

include "options.h"

include "context.h"

include "logging.h"

include "method.h"

include "nwipe.h"

include "prng.h"

include "version.h"

I'm assuming this was because of clang processing.

Will issue a fix later today.

PartialVolume commented 5 years ago

Fixed by #119