diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-01-02 19:01:17 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-01-02 19:01:17 +0100 |
commit | 8fbd00a2a9d6ccdec146a467b0ee4da9d319415a (patch) | |
tree | 53bd7dc7505bae29887bd3e06fece6361aaf12f9 | |
parent | 5e136f7de2c0bc943edf7ac4d7cfadc10ce8c4a4 (diff) | |
download | xine-lib-8fbd00a2a9d6ccdec146a467b0ee4da9d319415a.tar.gz xine-lib-8fbd00a2a9d6ccdec146a467b0ee4da9d319415a.tar.bz2 |
The name of the memcpy method is constant.
Changing this to a character array increase code size, has to be evaluated.
-rw-r--r-- | src/xine-utils/memcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-utils/memcpy.c b/src/xine-utils/memcpy.c index 15b0b228b..fc42f3399 100644 --- a/src/xine-utils/memcpy.c +++ b/src/xine-utils/memcpy.c @@ -383,7 +383,7 @@ static void *linux_kernel_memcpy(void *to, const void *from, size_t len) { #endif /* ARCH_X86 */ static struct { - char *const name; + const char *const name; void *(*const function)(void *to, const void *from, size_t len); uint64_t time; /* This type could be used for non-MSC build too! */ |