Skip to content

Commit

Permalink
Fix error message in OpenCL engine config function.
Browse files Browse the repository at this point in the history
  • Loading branch information
samr7 committed Aug 23, 2012
1 parent 7c1f495 commit 6969fee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oclengine.c
Expand Up @@ -2712,7 +2712,7 @@ vg_ocl_context_new_from_devstr(vg_context_t *vcp, const char *devstr,
nthreads = atoi(param);
if (nthreads == 0) {
fprintf(stderr,
"Invalid thread count '%s'\n", optarg);
"Invalid thread count '%s'\n", param);
continue;
}
}
Expand Down
2 changes: 1 addition & 1 deletion pattern.h
Expand Up @@ -35,7 +35,7 @@
#include <unistd.h>
#endif

#define VANITYGEN_VERSION "0.21"
#define VANITYGEN_VERSION "0.22pre"

typedef struct _vg_context_s vg_context_t;

Expand Down

0 comments on commit 6969fee

Please sign in to comment.