summaryrefslogtreecommitdiff
path: root/src/analysis/line_code.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/line_code.c')
-rw-r--r--src/analysis/line_code.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/analysis/line_code.c b/src/analysis/line_code.c
index c44899e..697dd7d 100644
--- a/src/analysis/line_code.c
+++ b/src/analysis/line_code.c
@@ -29,6 +29,7 @@
#include "line-int.h"
+#include "../format/format.h"
@@ -220,7 +221,7 @@ void g_code_line_refresh_markup(GCodeLine *line, MainRendering rendering)
if (show_code)
{
- exe_content = get_exe_content(g_rendering_options_get_format(line->options), NULL);
+ exe_content = g_binary_format_get_content(G_BIN_FORMAT(g_rendering_options_get_format(line->options)), NULL);
max_bin_len = &G_RENDERING_LINE(line)->max_bin_len[rendering];
bin_code = (char *)calloc(*max_bin_len + 1, sizeof(char));