diff options
author | Jean Guyomarc'h <jean@guyomarch.bzh> | 2016-05-28 22:45:01 +0200 |
---|---|---|
committer | Jean Guyomarc'h <jean@guyomarch.bzh> | 2016-05-28 22:45:01 +0200 |
commit | aedeca0ed2a14e0d3bb20bfb71baa62ae52d5825 (patch) | |
tree | a4ed92acf1e6f3f496899ee9826b6f6ebd6b709b /src/bin/eina | |
parent | 37adb060dd9bfdc0451487d50e8ea2d83b2be12b (diff) |
eina_btlog: handle objective-c class methods
Class methods signatures start with a '+'.
Diffstat (limited to 'src/bin/eina')
-rw-r--r-- | src/bin/eina/eina_btlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/eina/eina_btlog.c b/src/bin/eina/eina_btlog.c index 6c03fd8e47..d8ff13b601 100644 --- a/src/bin/eina/eina_btlog.c +++ b/src/bin/eina/eina_btlog.c | |||
@@ -175,7 +175,7 @@ _atos(const char *bin_dir, const char *bin_name, unsigned long long addr, | |||
175 | /* Default value, used as a fallback when cannot be determined */ | 175 | /* Default value, used as a fallback when cannot be determined */ |
176 | *file_line = -1; | 176 | *file_line = -1; |
177 | 177 | ||
178 | if (*s == '-') /* objc method... will contain an extra space */ | 178 | if ((*s == '-') || (*s == '+')) /* objc methods... will contain an extra space */ |
179 | func_space_count = 2; | 179 | func_space_count = 2; |
180 | else | 180 | else |
181 | func_space_count = 1; | 181 | func_space_count = 1; |