aboutsummaryrefslogtreecommitdiff
path: root/src/plugger.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-26 19:22:02 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-26 19:22:02 +0000
commit01ecf54b07e75c17ca5f7039084daeefaea9a1c7 (patch)
tree9e3581a62e292ba86bfa80160dd4d1a85f3a5863 /src/plugger.h
parent20584158e3d7f6a012a677476ba36d1691c7aa66 (diff)
downloadlibbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.tar.gz
libbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.tar.bz2
libbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.tar.xz
libbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.zip
Fixed a bug in the plugger and added the skeleton of the MemBuf class.
Diffstat (limited to 'src/plugger.h')
-rw-r--r--src/plugger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugger.h b/src/plugger.h
index 98d4ecc..01bbb50 100644
--- a/src/plugger.h
+++ b/src/plugger.h
@@ -148,7 +148,7 @@ namespace Bu
148 return NULL; 148 return NULL;
149 149
150 T *p = (T *)pReg->pInfo->createPlugin(); 150 T *p = (T *)pReg->pInfo->createPlugin();
151 hObj.insert( p, pReg ); 151 hObj.insert( (int )p, pReg );
152 //printf("pReg: %08X, pPlug: %08X\n", pReg, p ); 152 //printf("pReg: %08X, pPlug: %08X\n", pReg, p );
153 153
154 return p; 154 return p;