Skip to content
Snippets Groups Projects

Fix some warnings and typo

Closed Ghost User requested to merge quink-black:fix-warning into master

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Niklas Haas
    Niklas Haas @haasn started a thread on commit 43d24d75
  • 808 void image_lock(struct image *img)
    808 static void image_lock(struct image *img)
    809 809 {
    810 810 int index = img - images; // cheat, for lack of having actual image management
    811 811 refcount[index]++;
    812 812 }
    813 813
    814 void image_unlock(struct image *img)
    814 static void image_unlock(struct image *img)
    815 815 {
    816 816 int index = img - images;
    817 817 refcount[index]--;
    818 818 }
    819 819
    820 int main()
    820 int main(void)
  • Niklas Haas
  • Ghost User
  • Ghost User
  • Niklas Haas
  • Niklas Haas
  • Sorry for the delay in getting to this. GitHub didn't send me any notifications that you'd force-pushed an updated version of this PR, so I didn't see it sooner.

    Thanks, merged.

  • Please register or sign in to reply
    Loading