Skip to content

Commit

Permalink
Merge pull request VirusTotal#313 from awick/patch-1
Browse files Browse the repository at this point in the history
Missing close parenthesis
  • Loading branch information
plusvic committed May 11, 2015
2 parents 43f2ec9 + 6bec4f4 commit 5ccd0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libyara/include/yara/libyara.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ limitations under the License.
// Version as a single 4-byte hex number, e.g. 0x030401 == 3.4.1.
#define YR_VERSION_HEX ((YR_MAJOR_VERSION << 16) | \
(YR_MINOR_VERSION << 8) | \
(YR_MICRO_VERSION << 0)
(YR_MICRO_VERSION << 0))


YR_API int yr_initialize(void);
Expand Down

0 comments on commit 5ccd0b9

Please sign in to comment.