Changeset 462d2be6d74e7c2b3b51565fa8c5955910377f9b
- Timestamp:
- 27/05/07 18:30:22
(2 years ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1180283422 +0000
- git-parent:
[ee0a06882c138f493e5bd022fd6f303f55081d71]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1180283422 +0000
- Message:
Compilation warnings fixes.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2cb472d |
r462d2be |
|
| 38 | 38 | # define lprintf printf |
|---|
| 39 | 39 | #else |
|---|
| 40 | | static inline void lprintf( char *dummy, ... ){} |
|---|
| | 40 | static inline void lprintf( const char *dummy, ... ){} |
|---|
| 41 | 41 | #endif |
|---|
| 42 | 42 | |
|---|
| ra65b352 |
r462d2be |
|
| 87 | 87 | } asmrp_t; |
|---|
| 88 | 88 | |
|---|
| 89 | | static asmrp_t *asmrp_new () { |
|---|
| | 89 | static asmrp_t *asmrp_new (void ) { |
|---|
| 90 | 90 | |
|---|
| 91 | 91 | asmrp_t *p; |
|---|
| … | … | |
| 352 | 352 | } |
|---|
| 353 | 353 | |
|---|
| 354 | | static int asmrp_find_id (asmrp_t *p, char *s) { |
|---|
| | 354 | static int asmrp_find_id (asmrp_t *p, const char *s) { |
|---|
| 355 | 355 | |
|---|
| 356 | 356 | int i; |
|---|
| … | … | |
| 364 | 364 | } |
|---|
| 365 | 365 | |
|---|
| 366 | | static int asmrp_set_id (asmrp_t *p, char *s, int v) { |
|---|
| | 366 | static int asmrp_set_id (asmrp_t *p, const char *s, int v) { |
|---|
| 367 | 367 | |
|---|
| 368 | 368 | int i; |
|---|