|
From: Kouhei S. <nul...@cl...> - 2013-11-17 12:56:42
|
Kouhei Sutou 2013-11-17 21:56:23 +0900 (Sun, 17 Nov 2013) New Revision: 47fdbf65ab42b0c18069d4e8bf7ff6b65a2d7c8c https://github.com/clear-code/cutter/commit/47fdbf65ab42b0c18069d4e8bf7ff6b65a2d7c8c Message: loader pe: fix indent Modified files: cutter/cut-pe-loader.c Modified: cutter/cut-pe-loader.c (+1 -1) =================================================================== --- cutter/cut-pe-loader.c 2013-11-17 19:21:49 +0900 (cb06b7a) +++ cutter/cut-pe-loader.c 2013-11-17 21:56:23 +0900 (a578154) @@ -246,7 +246,7 @@ cut_pe_loader_collect_symbols (CutPELoader *loader) if (edata_section) { export_directory = (IMAGE_EXPORT_DIRECTORY *)(priv->content + - edata_section->PointerToRawData); + edata_section->PointerToRawData); base_address = priv->content + edata_section->PointerToRawData - |