Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermocalvo committed Oct 9, 2017
2 parents 1a7f611 + c116145 commit 097c2f9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ AC_PREREQ([2.68])


# Initialize package
AC_INIT([fmt], [1.3.1], [fmt@guillermo.in], [fmt], [https://github.com/guillermocalvo/fmt/])
AC_INIT([fmt], [1.3.2], [fmt@guillermo.in], [fmt], [https://github.com/guillermocalvo/fmt/])


# Information on the package
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fmt",
"version": "1.3.1",
"version": "1.3.2",
"description": "A tiny C string formatting library",
"repo": "guillermocalvo/fmt",
"license": "LGPL",
Expand Down
6 changes: 3 additions & 3 deletions src/fmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* fmt source code file
*
* @version 1.3.1
* @version 1.3.2
* @author Copyright (c) 2017 Guillermo Calvo
*
*/
Expand Down Expand Up @@ -288,10 +288,10 @@ int fmt_print_builtin(struct fmt_stream * out, const char * format, ...){
int written;
va_list arg;

va_start(arg, format);

if( !IS_READY(out) ){ return(FMT_ERROR); }

va_start(arg, format);

if( IS_FILE(out) ){

written = vfprintf(out->file, format, arg);
Expand Down
2 changes: 1 addition & 1 deletion src/fmt.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* fmt header file
*
* @version 1.3.1
* @version 1.3.2
* @author Copyright (c) 2017 Guillermo Calvo
*
*/
Expand Down

0 comments on commit 097c2f9

Please sign in to comment.