From 6b70a89321aa4cc865433efa94f01e149903823b Mon Sep 17 00:00:00 2001 From: jj Date: Sun, 17 Feb 2013 02:05:01 +0100 Subject: [PATCH] ruby: typo in autogen/int8_t --- plugins/ruby/codegen.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ruby/codegen.pl b/plugins/ruby/codegen.pl index 03017a0f5..a4bebb7e6 100755 --- a/plugins/ruby/codegen.pl +++ b/plugins/ruby/codegen.pl @@ -843,7 +843,7 @@ sub render_item_number { } elsif ($subtype eq 'uint8_t') { push @lines_rb, 'number 8, false'; } elsif ($subtype eq 'int8_t') { - push @lines_rb, 'number 8, false'; + push @lines_rb, 'number 8, true'; } elsif ($subtype eq 'bool') { push @lines_rb, 'number 8, true'; $initvalue ||= 'nil';