diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-11-27 08:52:59 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-11-27 08:52:59 -0500 |
commit | f8f0bcd4d3d607c476a8a0ce301232b72a301ef3 (patch) | |
tree | fcf3960bdbf5806b2044c3ae4ee1d9b9d8bb96d6 /swaybg | |
parent | 53d353e6b47e4c89ed7ad028ed756fec1d793743 (diff) |
Don't use the _t postfix on non-typedef structures
Diffstat (limited to 'swaybg')
-rw-r--r-- | swaybg/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swaybg/main.c b/swaybg/main.c index e4c699c1..feb9002e 100644 --- a/swaybg/main.c +++ b/swaybg/main.c @@ -12,7 +12,7 @@ list_t *surfaces; struct registry *registry; -enum scaling_mode_t { +enum scaling_mode { SCALING_MODE_STRETCH, SCALING_MODE_FILL, SCALING_MODE_FIT, @@ -62,7 +62,7 @@ int main(int argc, const char **argv) { double height = cairo_image_surface_get_height(image); const char *scaling_mode_str = argv[3]; - enum scaling_mode_t scaling_mode; + enum scaling_mode scaling_mode; if (strcmp(scaling_mode_str, "stretch") == 0) { scaling_mode = SCALING_MODE_STRETCH; } else if (strcmp(scaling_mode_str, "fill") == 0) { |