about summary refs log tree commit diff stats
path: root/src/resource.h
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@openmailbox.org>2015-10-09 11:58:25 +0200
committerMichael Vetter <jubalh@openmailbox.org>2015-10-21 15:07:49 +0200
commit3b0f7e109c5c41d29635e518fc4a241cfade84a1 (patch)
tree8c8eef27ddd19b826992615f723e3ff631dd4a2a /src/resource.h
parente434b1bbf8bd84b8478f4264bf1ced66b64f4df9 (diff)
downloadprofani-tty-3b0f7e109c5c41d29635e518fc4a241cfade84a1.tar.gz
Use consistent style for pointers
Diffstat (limited to 'src/resource.h')
-rw-r--r--src/resource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resource.h b/src/resource.h
index 43bb6d18..f45920fa 100644
--- a/src/resource.h
+++ b/src/resource.h
@@ -44,8 +44,8 @@ typedef struct resource_t {
     int priority;
 } Resource;
 
-Resource * resource_new(const char * const name, resource_presence_t presence,
-    const char * const status, const int priority);
+Resource* resource_new(const char *const name, resource_presence_t presence,
+    const char *const status, const int priority);
 void resource_destroy(Resource *resource);
 
 int resource_compare_availability(Resource *first, Resource *second);