aboutgitcodelistschat:MatrixIRC
path: root/cooker/gluten.c
diff options
context:
space:
mode:
Diffstat (limited to 'cooker/gluten.c')
-rw-r--r--cooker/gluten.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cooker/gluten.c b/cooker/gluten.c
index 4d3aea5..708c005 100644
--- a/cooker/gluten.c
+++ b/cooker/gluten.c
@@ -119,8 +119,10 @@ struct gluten_offset gluten_get_tag(struct gluten_ctx *g, const char *name)
int i;
for (i = 0; i < TAGS_MAX && g->tags[i].name; i++) {
- if (!strcmp(g->tags[i].name, name))
+ if (!strcmp(g->tags[i].name, name)) {
+ debug("XXX got tag for name:%s offset:%d", name, g->tags[i].offset);
return g->tags[i].offset;
+ }
}
die(" tag '%s' not found", name);