diff options
| author | Mike Wey | 2011-01-09 20:52:03 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 20:52:03 +0100 |
| commit | 0bd6744310e0b209f3c5911a4e68d453e867914a (patch) | |
| tree | a916a4d8151decbb068a6e002049f8ab32550e2c /dmagick/c/log.d | |
| parent | cbac78bbec726017355cb455a776f193e7fc3022 (diff) | |
change the constness of the return types
Diffstat (limited to 'dmagick/c/log.d')
| -rw-r--r-- | dmagick/c/log.d | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dmagick/c/log.d b/dmagick/c/log.d index d7db729..abdc0f3 100644 --- a/dmagick/c/log.d +++ b/dmagick/c/log.d @@ -37,10 +37,10 @@ extern(C) char** GetLogList(const char*, size_t*, ExceptionInfo*); - const(char*) GetLogName(); - const(char*) SetLogName(const char*); + const(char)* GetLogName(); + const(char)* SetLogName(const char*); - const(LogInfo**) GetLogInfoList(const char*, size_t*, ExceptionInfo*); + const(LogInfo)** GetLogInfoList(const char*, size_t*, ExceptionInfo*); LogEventType SetLogEventMask(const char*); |
