Skip to content

Commit

Permalink
Merge pull request #15 from davide-scola/0.x-update_stability_report
Browse files Browse the repository at this point in the history
[0.x] Stability report
  • Loading branch information
davide-scola authored May 23, 2018
2 parents bcd5970 + a6dc3f6 commit ac5fe2c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![GitHub (Pre-)Release Date](https://img.shields.io/github/release-date-pre/bitfinexcom/grenache-cli.svg)
![GitHub last commit](https://img.shields.io/github/last-commit/bitfinexcom/grenache-cli.svg)
![GitHub pull requests](https://img.shields.io/github/issues-pr/bitfinexcom/grenache-cli.svg)
![stability-wip](https://img.shields.io/badge/stability-work_in_progress-lightgrey.svg)
![stability-unstable](https://img.shields.io/badge/stability-unstable-yellow.svg)

<img align="right" width="15%" src="https://github.com/bitfinexcom/grenache/raw/master/logos/logo-square.png" />

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ dnl implied. See the License for the specific language governing permissions
dnl and limitations under the License.

AC_PREREQ(2.69)
AC_INIT([grenache-cli], [0.6.0], [[email protected]])
AC_INIT([grenache-cli], [0.6.1], [[email protected]])

AC_SUBST([VERSION], [0.6.0])
AC_SUBST([VERSION], [0.6.1])
AC_SUBST([SB], [`$srcdir/shtool echo -n -e %B`])
AC_SUBST([EB], [`$srcdir/shtool echo -n -e %b`])

Expand Down
4 changes: 2 additions & 2 deletions src/encode.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* @return unsigned char
* The decimal value or 0 in case of error.
*/
INLINE ALWAYS_INLINE unsigned char ord(char ch) {
static INLINE ALWAYS_INLINE unsigned char ord(char ch) {
return (ch >= L'0' && ch <= L'9') ? (ch - L'0') : (
(ch >= L'a' && ch <= L'f') ? (ch - L'a' + 10) : 0
);
Expand All @@ -51,7 +51,7 @@ INLINE ALWAYS_INLINE unsigned char ord(char ch) {
* @return char
* The hexadecimal character (lowercase).
*/
INLINE ALWAYS_INLINE char ch(unsigned char ord) {
static INLINE ALWAYS_INLINE char ch(unsigned char ord) {
return ((ord & 0x0F) >= 0 && (ord & 0x0F) <= 9) ? ((ord & 0x0F) + L'0') : (
(ord & 0x0F) + L'a' - 10
);
Expand Down

0 comments on commit ac5fe2c

Please sign in to comment.