summaryrefslogtreecommitdiff
path: root/include/privates.h
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2007-08-16 16:10:44 -0400
committerEamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil>2007-08-16 16:12:01 -0400
commit860a09cfb8afc0a293c7eb5e01762724eb86847a (patch)
tree31294b12f428d9bc97dff0b6931c5cea6f9d7533 /include/privates.h
parent6fd0a0b08de912421718aca17fe34a55ae285ae7 (diff)
devPrivates rework: Nevermind, can't const due to return value warnings.
Diffstat (limited to 'include/privates.h')
-rw-r--r--include/privates.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/privates.h b/include/privates.h
index e81e40a93..e377b3068 100644
--- a/include/privates.h
+++ b/include/privates.h
@@ -19,10 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
* STUFF FOR PRIVATES
*****************************************************************/
-typedef void *const DevPrivateKey;
+typedef void *DevPrivateKey;
typedef struct _Private {
- pointer key;
+ DevPrivateKey key;
pointer value;
struct _Private *next;
} PrivateRec;
@@ -111,7 +111,7 @@ dixSetPrivate(PrivateRec **privates, const DevPrivateKey key, pointer val)
* The calldata argument to the callbacks is a PrivateCallbackPtr.
*/
typedef struct _PrivateCallback {
- pointer key; /* key used to set the private */
+ DevPrivateKey key; /* private registration key */
pointer *value; /* address of private pointer */
} PrivateCallbackRec;