Revision 4f1a6ef1df6f952fc9f22f34d51a6c3d3c4fbe23 authored by Linus Torvalds on 03 August 2019, 01:40:49 UTC, committed by Linus Torvalds on 03 August 2019, 01:40:49 UTC
Pull selinux fix from Paul Moore:
 "One more small fix for a potential memory leak in an error path"

* tag 'selinux-pr-20190801' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux:
  selinux: fix memory leak in policydb_init()
2 parent s dcb8cfb + 4538523
Raw File
Makefile
# SPDX-License-Identifier: GPL-2.0
# Makefile for LEDs tools

CFLAGS = -Wall -Wextra -g -I../../include/uapi

all: uledmon led_hw_brightness_mon
%: %.c
	$(CC) $(CFLAGS) -o $@ $^

clean:
	$(RM) uledmon led_hw_brightness_mon

.PHONY: all clean
back to top