From ed406e0e3d3a3a630bd227a602143f34d7759e72 Mon Sep 17 00:00:00 2001 From: Japa Date: Sun, 4 Feb 2018 10:24:51 +0530 Subject: [PATCH] fix naming and return statement. --- plugins/remotefortressreader/remotefortressreader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/remotefortressreader/remotefortressreader.cpp b/plugins/remotefortressreader/remotefortressreader.cpp index 412d7894f..32bd73dad 100644 --- a/plugins/remotefortressreader/remotefortressreader.cpp +++ b/plugins/remotefortressreader/remotefortressreader.cpp @@ -194,7 +194,7 @@ command_result loadArtImageChunk(color_ostream &out, vector & parameter { int index = atoi(parameters[0].c_str()); auto chunk = GetArtImageChunk(&(world->art_image_chunks), index); - out.print("Loaded chunk id: &d", chunk->id); + out.print("Loaded chunk id: %d\n", chunk->id); } return CR_OK; } @@ -260,7 +260,7 @@ DFhackCExport command_result plugin_init(color_ostream &out, std::vector