Changeset c9549a21fc696b6ea7f26361eb7523e700374f8b
- Timestamp:
- 03/03/08 02:45:45
(6 months ago)
- Author:
- Pierre d'Herbemont <pdherbemont@free.fr>
- git-committer:
- Pierre d'Herbemont <pdherbemont@free.fr> 1204508745 +0100
- git-parent:
[7e5f8f848ccb470ffc256b39817d13408926c002]
- git-author:
- Pierre d'Herbemont <pdherbemont@free.fr> 1204508745 +0100
- Message:
text/unicode.c: More unused warning fix.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
rc9549a2 |
|
| 158 | 158 | return out; |
|---|
| 159 | 159 | #else |
|---|
| | 160 | VLC_UNUSED(from); |
|---|
| 160 | 161 | return (char *)string; |
|---|
| 161 | 162 | #endif |
|---|
| … | … | |
| 172 | 173 | return locale_fast (string, from); |
|---|
| 173 | 174 | #else |
|---|
| | 175 | VLC_UNUSED(from); |
|---|
| 174 | 176 | return strdup (string); |
|---|
| 175 | 177 | #endif |
|---|
| … | … | |
| 184 | 186 | #elif defined (USE_MB2MB) |
|---|
| 185 | 187 | free ((char *)str); |
|---|
| | 188 | #else |
|---|
| | 189 | VLC_UNUSED(str); |
|---|
| 186 | 190 | #endif |
|---|
| 187 | 191 | } |
|---|