Changeset 991ae089635d4b4c3882e9125369be2e7ead85af
- Timestamp:
- 22/06/08 18:46:58
(4 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1214153218 +0300
- git-parent:
[f991c0201362390627c4a9c9e1111f83d8bb9244]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1214152975 +0300
- Message:
Fix nissing include and atoi() invocation
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r536779c |
r991ae08 |
|
| 36 | 36 | |
|---|
| 37 | 37 | #include <string.h> |
|---|
| | 38 | #include <stdlib.h> |
|---|
| 38 | 39 | |
|---|
| 39 | 40 | #include <sys/types.h> |
|---|
| … | … | |
| 98 | 99 | const char *sockenv = getenv ("VLC_ROOTWRAP_SOCK"); |
|---|
| 99 | 100 | if (sockenv != NULL) |
|---|
| 100 | | sock = atoi (sock); |
|---|
| | 101 | sock = atoi (sockenv); |
|---|
| 101 | 102 | if (sock == -1) |
|---|
| 102 | 103 | { |
|---|