Fixing newline issues on files modified to support audio

This commit is contained in:
Sion Chaudhuri 2013-04-30 01:30:29 -07:00 committed by Michael Jumper
parent a9957e7926
commit e30c769728
5 changed files with 5 additions and 4 deletions

View File

@ -61,4 +61,4 @@ void buffer_insert(buffer* buf, void* data, int size_of_data);
void buffer_remove(buffer* buf, void* data, int size_of_data, guac_client* client); void buffer_remove(buffer* buf, void* data, int size_of_data, guac_client* client);
#endif #endif

View File

@ -39,4 +39,4 @@ int enqueue(queue* q, void* data, int size);
int dequeue(queue* q, void* data, int size); int dequeue(queue* q, void* data, int size);
#endif #endif

View File

@ -83,4 +83,4 @@ void buffer_remove(buffer* buf, void* data, int size_of_data, guac_client* clien
pthread_mutex_unlock(&(buf->update_lock)); pthread_mutex_unlock(&(buf->update_lock));
} }

View File

@ -171,4 +171,4 @@ void guac_pa_sleep(int millis) {
nanosleep(&sleep_period, NULL); nanosleep(&sleep_period, NULL);
} }

View File

@ -86,3 +86,4 @@ typedef struct vnc_guac_client_data {
} vnc_guac_client_data; } vnc_guac_client_data;
#endif #endif