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/client.d | |
| parent | cbac78bbec726017355cb455a776f193e7fc3022 (diff) | |
change the constness of the return types
Diffstat (limited to 'dmagick/c/client.d')
| -rw-r--r-- | dmagick/c/client.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dmagick/c/client.d b/dmagick/c/client.d index 4404607..49a6861 100644 --- a/dmagick/c/client.d +++ b/dmagick/c/client.d @@ -2,8 +2,8 @@ module dmagick.c.client; extern(C) { - const(char*) GetClientPath(); - const(char*) GetClientName(); - const(char*) SetClientName(const char*); - const(char*) SetClientPath(const char*); + const(char)* GetClientPath(); + const(char)* GetClientName(); + const(char)* SetClientName(const char*); + const(char)* SetClientPath(const char*); } |
