diff options
| author | Michael Brown | 2006-04-24 20:31:37 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-04-24 20:31:37 +0200 |
| commit | 832e86246b37c78466a5a30159bed48ed59eb811 (patch) | |
| tree | c931cdff0738445ba4b5d432784ac11af323b35a /src/proto/slam.c | |
| parent | (librm_base-1b) is already an offset; no need to apply OFFSET(). (diff) | |
| download | ipxe-832e86246b37c78466a5a30159bed48ed59eb811.tar.gz ipxe-832e86246b37c78466a5a30159bed48ed59eb811.tar.xz ipxe-832e86246b37c78466a5a30159bed48ed59eb811.zip | |
gcc is rather over-aggressive about optimising out static data structures
even when __atribute__ (( unused )) is correctly set...
Diffstat (limited to 'src/proto/slam.c')
| -rw-r--r-- | src/proto/slam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/slam.c b/src/proto/slam.c index 50745aec0..c55bf3073 100644 --- a/src/proto/slam.c +++ b/src/proto/slam.c @@ -534,7 +534,7 @@ static int url_slam ( char *url __unused, struct sockaddr_in *server, return proto_slam(&info); } -static struct protocol slam_protocol __protocol = { +struct protocol slam_protocol __protocol = { .name = "x-slam", .default_port = SLAM_PORT, .load = url_slam, |
