Skip to content

Commit

Permalink
Fixing compilation warning on some OSs. Thanks @kwik101
Browse files Browse the repository at this point in the history
  • Loading branch information
mariano committed Jun 21, 2011
1 parent a27407e commit 4c87a03
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Expand Up @@ -2,6 +2,10 @@ For more in depth changelog, check the Github Commits:

https://github.com/mariano/node-db-drizzle/commits/master

0.6.6
-----
* Fixing compilation warning on some OSs. Thanks @kwik101

0.6.5
-----
* Throwing exception if Query.execute() is issued without an active connection
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
, "description" : "Drizzle database bindings for Node.JS"
, "keywords": ["database","db","native","binding","library","plugin","client","drizzle","libdrizzle"]
, "homepage" : "http://nodejsdb.org/db-drizzle"
, "version" : "0.6.5"
, "version" : "0.6.6"
, "engines" : { "node" : ">=0.4.1" }
, "maintainers" :
[ { "name": "Mariano Iglesias"
Expand Down
2 changes: 1 addition & 1 deletion src/result.cc
Expand Up @@ -145,7 +145,7 @@ char** node_db_drizzle::Result::next() throw(node_db::Exception&) {
}

unsigned long* node_db_drizzle::Result::columnLengths() throw(node_db::Exception&) {
return drizzle_row_field_sizes(this->result);
return (unsigned long*) drizzle_row_field_sizes(this->result);
}

char** node_db_drizzle::Result::row() throw(node_db::Exception&) {
Expand Down
2 changes: 1 addition & 1 deletion wscript
Expand Up @@ -11,7 +11,7 @@ from os.path import exists

srcdir = "."
blddir = "build"
VERSION = "0.6.5"
VERSION = "0.6.6"

def set_options(opt):
opt.tool_options("compiler_cxx")
Expand Down

0 comments on commit 4c87a03

Please sign in to comment.