Skip to content

Commit

Permalink
fix version management
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Klee committed Feb 6, 2015
1 parent 4dcad7a commit 2b6e2d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ngp.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include <pthread.h>
#include <ctype.h>

#define NGP_VERSION 1.1
#define NGP_VERSION "1.2"

#define CURSOR_UP 'k'
#define CURSOR_DOWN 'j'
Expand Down Expand Up @@ -854,7 +854,7 @@ void display_status(void)

static void display_version(void)
{
printf("version 1.1\n");
printf("version %s\n", NGP_VERSION);
}

static void add_element(struct list **list, char *element)
Expand Down

0 comments on commit 2b6e2d9

Please sign in to comment.