Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.x] Stability report #15

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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