Jan Breuer
2012-12-04 36f2d7dab1e65507841067073dd66d72b2dc663c
Correct type refactoryng in README

Correct scpi_context_t to scpi_t
1个文件已修改
2 ■■■ 已修改文件
README.md 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
README.md
@@ -82,7 +82,7 @@
The last structure is scpi context used in parser library.
    scpi_context_t scpi_context;
    scpi_t scpi_context;
All these structures should be global variables of the c file or allocated by function like malloc. It is common mistake to create these structures inside a function as local variables of this function. This will not work. If you don't know why, you should read something about [function stack.](http://stackoverflow.com/questions/4824342/returning-a-local-variable-from-function-in-c).