summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2012-01-10 15:03:38 +0000
committerAlon Levy <alevy@redhat.com>2012-01-13 18:11:59 +0200
commit02d56750bda532e9a0b4e4d9efcde82ae44fdc38 (patch)
treeb230d0fae6de66fd79a92212144bc00a6c9b3f54 /server
parent8ab7c4535a884d301cfc8b02c855df36c0cf0e5b (diff)
downloadspice-02d56750bda532e9a0b4e4d9efcde82ae44fdc38.tar.gz
spice-02d56750bda532e9a0b4e4d9efcde82ae44fdc38.tar.xz
spice-02d56750bda532e9a0b4e4d9efcde82ae44fdc38.zip
Remove trailing blank lines
Remove any blank lines at the end of all source files
Diffstat (limited to 'server')
-rw-r--r--server/demarshallers.h1
-rw-r--r--server/glz_encode_tmpl.c1
-rw-r--r--server/glz_encoder.c1
-rw-r--r--server/glz_encoder.h1
-rw-r--r--server/glz_encoder_config.h1
-rw-r--r--server/glz_encoder_dictionary.c1
-rw-r--r--server/glz_encoder_dictionary.h1
-rw-r--r--server/glz_encoder_dictionary_protected.h1
-rw-r--r--server/inputs_channel.c1
-rw-r--r--server/inputs_channel.h1
-rw-r--r--server/main_channel.c1
-rw-r--r--server/red_bitmap_utils.h1
-rw-r--r--server/red_common.h1
-rw-r--r--server/red_parse_qxl.c1
-rw-r--r--server/red_tunnel_worker.c1
-rw-r--r--server/red_worker.h1
-rw-r--r--server/reds.h1
-rw-r--r--server/smartcard.h1
-rw-r--r--server/snd_worker.c1
-rw-r--r--server/snd_worker.h1
-rw-r--r--server/spice-experimental.h1
-rw-r--r--server/stat.h1
-rw-r--r--server/tests/README1
-rw-r--r--server/tests/basic_event_loop.c1
-rw-r--r--server/tests/test_display_base.c1
-rw-r--r--server/tests/test_display_no_ssl.c1
-rw-r--r--server/tests/test_display_streaming.c1
-rw-r--r--server/tests/test_empty_success.c1
-rw-r--r--server/tests/test_fail_on_null_core_interface.c1
-rw-r--r--server/tests/test_just_sockets_no_ssl.c1
30 files changed, 0 insertions, 30 deletions
diff --git a/server/demarshallers.h b/server/demarshallers.h
index 38e4e158..c3d770db 100644
--- a/server/demarshallers.h
+++ b/server/demarshallers.h
@@ -24,4 +24,3 @@ typedef uint8_t * (*spice_parse_channel_func_t)(uint8_t *message_start, uint8_t
spice_parse_channel_func_t spice_get_client_channel_parser(uint32_t channel, unsigned int *max_message_type);
#endif
-
diff --git a/server/glz_encode_tmpl.c b/server/glz_encode_tmpl.c
index d5144215..41edb1b7 100644
--- a/server/glz_encode_tmpl.c
+++ b/server/glz_encode_tmpl.c
@@ -572,4 +572,3 @@ static void FNAME(compress)(Encoder *encoder)
#undef LZ_RGB32
#undef MIN_REF_ENCODE_SIZE
#undef MAX_REF_ENCODE_SIZE
-
diff --git a/server/glz_encoder.c b/server/glz_encoder.c
index 8d20807f..1ec1f9bd 100644
--- a/server/glz_encoder.c
+++ b/server/glz_encoder.c
@@ -308,4 +308,3 @@ int glz_encode(GlzEncoderContext *opaque_encoder,
return encoder->io.bytes_count;
}
-
diff --git a/server/glz_encoder.h b/server/glz_encoder.h
index 6c4d2b38..9b4f9108 100644
--- a/server/glz_encoder.h
+++ b/server/glz_encoder.h
@@ -53,4 +53,3 @@ int glz_encode(GlzEncoderContext *opaque_encoder, LzImageType type, int width, i
#endif // _H_GLZ_ENCODER
-
diff --git a/server/glz_encoder_config.h b/server/glz_encoder_config.h
index 791d4fc4..2d1626a7 100644
--- a/server/glz_encoder_config.h
+++ b/server/glz_encoder_config.h
@@ -59,4 +59,3 @@ struct GlzEncoderUsrContext {
#endif
-
diff --git a/server/glz_encoder_dictionary.c b/server/glz_encoder_dictionary.c
index 7cadc492..efe6cb88 100644
--- a/server/glz_encoder_dictionary.c
+++ b/server/glz_encoder_dictionary.c
@@ -631,4 +631,3 @@ void glz_dictionary_post_encode(uint32_t encoder_id, GlzEncoderUsrContext *usr,
dict->window.encoders_heads[encoder_id] = NULL_IMAGE_SEG_ID;
pthread_mutex_unlock(&dict->lock);
}
-
diff --git a/server/glz_encoder_dictionary.h b/server/glz_encoder_dictionary.h
index a85db6e8..eb57aa54 100644
--- a/server/glz_encoder_dictionary.h
+++ b/server/glz_encoder_dictionary.h
@@ -67,4 +67,3 @@ void glz_enc_dictionary_remove_image(GlzEncDictContext *opaque_dict,
GlzEncDictImageContext *image, GlzEncoderUsrContext *usr);
#endif // _H_GLZ_ENCODER_DICTIONARY
-
diff --git a/server/glz_encoder_dictionary_protected.h b/server/glz_encoder_dictionary_protected.h
index a594c5fa..ae7fdc20 100644
--- a/server/glz_encoder_dictionary_protected.h
+++ b/server/glz_encoder_dictionary_protected.h
@@ -184,4 +184,3 @@ void glz_dictionary_post_encode(uint32_t encoder_id, GlzEncoderUsrContext *usr,
ref_seg->pixels_so_far)))
#endif // _H_GLZ_ENCODER_DICTIONARY_PROTECTED
-
diff --git a/server/inputs_channel.c b/server/inputs_channel.c
index 4fe36b8e..83c2cad9 100644
--- a/server/inputs_channel.c
+++ b/server/inputs_channel.c
@@ -570,4 +570,3 @@ void inputs_init(void)
red_error("key modifiers timer create failed");
}
}
-
diff --git a/server/inputs_channel.h b/server/inputs_channel.h
index 39d244b9..672ca83a 100644
--- a/server/inputs_channel.h
+++ b/server/inputs_channel.h
@@ -36,4 +36,3 @@ void inputs_detach_tablet(SpiceTabletInstance *_tablet);
void inputs_set_tablet_logical_size(int x_res, int y_res);
#endif
-
diff --git a/server/main_channel.c b/server/main_channel.c
index b55bf002..c4b27523 100644
--- a/server/main_channel.c
+++ b/server/main_channel.c
@@ -1113,4 +1113,3 @@ int main_channel_migrate_complete(MainChannel *main_chan, int success)
}
return semi_seamless_count;
}
-
diff --git a/server/red_bitmap_utils.h b/server/red_bitmap_utils.h
index 1f26eb4a..6d508a7c 100644
--- a/server/red_bitmap_utils.h
+++ b/server/red_bitmap_utils.h
@@ -159,4 +159,3 @@ static void FNAME(compute_lines_gradual_score)(PIXEL *lines, int width, int num_
#undef CONTRAST_TH
#undef SAME_PIXEL_WEIGHT
#undef NOT_CONTRAST_PIXELS_WEIGHT
-
diff --git a/server/red_common.h b/server/red_common.h
index 494ffed2..86be95dd 100644
--- a/server/red_common.h
+++ b/server/red_common.h
@@ -35,4 +35,3 @@ enum {
};
#endif
-
diff --git a/server/red_parse_qxl.c b/server/red_parse_qxl.c
index 256e8e9b..201e683e 100644
--- a/server/red_parse_qxl.c
+++ b/server/red_parse_qxl.c
@@ -1110,4 +1110,3 @@ void red_put_cursor_cmd(RedCursorCmd *red)
break;
}
}
-
diff --git a/server/red_tunnel_worker.c b/server/red_tunnel_worker.c
index 429f7372..c2019dd0 100644
--- a/server/red_tunnel_worker.c
+++ b/server/red_tunnel_worker.c
@@ -3505,4 +3505,3 @@ static void red_tunnel_channel_create(TunnelWorker *worker)
red_channel_set_data(channel, worker);
reds_register_channel(worker->channel);
}
-
diff --git a/server/red_worker.h b/server/red_worker.h
index 08c7b223..1f63d01f 100644
--- a/server/red_worker.h
+++ b/server/red_worker.h
@@ -165,4 +165,3 @@ static inline void read_message(int fd, RedWorkerMessage *message)
}
#endif
-
diff --git a/server/reds.h b/server/reds.h
index 450825de..2a4e3513 100644
--- a/server/reds.h
+++ b/server/reds.h
@@ -149,4 +149,3 @@ void reds_on_main_receive_migrate_data(MainMigrateData *data, uint8_t *end);
void reds_on_main_mouse_mode_request(void *message, size_t size);
void reds_on_client_migrate_complete(RedClient *client);
#endif
-
diff --git a/server/smartcard.h b/server/smartcard.h
index e7fa4572..60cc2c6c 100644
--- a/server/smartcard.h
+++ b/server/smartcard.h
@@ -30,4 +30,3 @@ int smartcard_device_connect(SpiceCharDeviceInstance *char_device);
void smartcard_device_disconnect(SpiceCharDeviceInstance *char_device);
#endif // __SMART_CARD_H__
-
diff --git a/server/snd_worker.c b/server/snd_worker.c
index 5d580778..0527009e 100644
--- a/server/snd_worker.c
+++ b/server/snd_worker.c
@@ -1562,4 +1562,3 @@ int snd_get_playback_compression(void)
{
return (playback_compression == SPICE_AUDIO_DATA_MODE_RAW) ? FALSE : TRUE;
}
-
diff --git a/server/snd_worker.h b/server/snd_worker.h
index 7659cb23..1811a610 100644
--- a/server/snd_worker.h
+++ b/server/snd_worker.h
@@ -30,4 +30,3 @@ void snd_set_playback_compression(int on);
int snd_get_playback_compression(void);
#endif
-
diff --git a/server/spice-experimental.h b/server/spice-experimental.h
index 6997aa03..f16d555f 100644
--- a/server/spice-experimental.h
+++ b/server/spice-experimental.h
@@ -38,4 +38,3 @@ enum {
int spice_server_migrate_client_state(SpiceServer *s);
#endif // __SPICE_EXPERIMENTAL_H__
-
diff --git a/server/stat.h b/server/stat.h
index bdafd917..d5c18781 100644
--- a/server/stat.h
+++ b/server/stat.h
@@ -45,4 +45,3 @@ void stat_remove_counter(uint64_t *counter);
#endif
#endif
-
diff --git a/server/tests/README b/server/tests/README
index 477ca0ce..8818830f 100644
--- a/server/tests/README
+++ b/server/tests/README
@@ -21,4 +21,3 @@ test_fail_on_null_core_interface
basic_event_loop.c
used by test_just_sockets_no_ssl, can be used by other tests. very crude event loop. Should probably use libevent for better tests, but this is self contained.
-
diff --git a/server/tests/basic_event_loop.c b/server/tests/basic_event_loop.c
index e0cc06e6..41795f10 100644
--- a/server/tests/basic_event_loop.c
+++ b/server/tests/basic_event_loop.c
@@ -281,4 +281,3 @@ SpiceCoreInterface *basic_event_loop_init(void)
ignore_sigpipe();
return &core;
}
-
diff --git a/server/tests/test_display_base.c b/server/tests/test_display_base.c
index 579ef1e4..b31e6fba 100644
--- a/server/tests/test_display_base.c
+++ b/server/tests/test_display_base.c
@@ -574,4 +574,3 @@ SpiceServer* test_init(SpiceCoreInterface *core)
wakeup_timer = core->timer_add(do_wakeup, NULL);
return server;
}
-
diff --git a/server/tests/test_display_no_ssl.c b/server/tests/test_display_no_ssl.c
index 1eb83b37..3877c8d8 100644
--- a/server/tests/test_display_no_ssl.c
+++ b/server/tests/test_display_no_ssl.c
@@ -50,4 +50,3 @@ int main(void)
return 0;
}
-
diff --git a/server/tests/test_display_streaming.c b/server/tests/test_display_streaming.c
index b4025254..e7d5156a 100644
--- a/server/tests/test_display_streaming.c
+++ b/server/tests/test_display_streaming.c
@@ -24,4 +24,3 @@ int main(void)
basic_event_loop_mainloop();
return 0;
}
-
diff --git a/server/tests/test_empty_success.c b/server/tests/test_empty_success.c
index 3641eb76..a4f49c7a 100644
--- a/server/tests/test_empty_success.c
+++ b/server/tests/test_empty_success.c
@@ -57,4 +57,3 @@ int main(void)
return 0;
}
-
diff --git a/server/tests/test_fail_on_null_core_interface.c b/server/tests/test_fail_on_null_core_interface.c
index 6490a6a7..105dd639 100644
--- a/server/tests/test_fail_on_null_core_interface.c
+++ b/server/tests/test_fail_on_null_core_interface.c
@@ -10,4 +10,3 @@ int main(void)
return 0;
}
-
diff --git a/server/tests/test_just_sockets_no_ssl.c b/server/tests/test_just_sockets_no_ssl.c
index afa3558b..e105b1ce 100644
--- a/server/tests/test_just_sockets_no_ssl.c
+++ b/server/tests/test_just_sockets_no_ssl.c
@@ -16,4 +16,3 @@ int main(void)
return 0;
}
-