Skip to content

Commit

Permalink
Fix syntax error. (#1355)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdhintz authored and zdenop committed Mar 3, 2018
1 parent b9b08c7 commit cf66bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lstm/lstm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ static inline uint32_t ceil_log2(uint32_t n)
if (n == 0) return UINT_MAX;
if (n == 1) return 0;
uint32_t val = n;
uint32_t int l2 = 0;
uint32_t l2 = 0;
while (val > 1) {
val >>= 1;
l2++;
Expand Down

0 comments on commit cf66bc8

Please sign in to comment.